2017-01-30 104 views
-2

我曾嘗試搞亂不同的東西,並查找,但我可能會使用不正確的措辭。我只是想知道空白行在數組索引中的位置。感謝您的任何幫助/指導。如何獲得一個數組表打印每隔一行?

I'm wanting my output to look like: 
Course  Hours Score Grade 
CS121   4  98  A 
// mine doesn't have this blank line 
Math161   3  55  F 
// or this blank line 
CS124   3  66  D 

我最後的print語句:System.out.printf("%-10s %d %5d %5c\n", courses[i], credits[i], scores[i], letterGrades[i]);

+1

究竟*是什麼問題? – NewUser

回答

2

變化\n(非便攜的新線,和奇異),以%n%n。像,

System.out.printf("%-10s %d %5d %5c%n%n", courses[i], credits[i], scores[i], 
     letterGrades[i]); 

添加一個空System.out.println();後立即(添加新行)。

System.out.printf("%-10s %d %5d %5c%n", courses[i], credits[i], scores[i], 
     letterGrades[i]); 
System.out.println(); 
相關問題