-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]);
究竟*是什麼問題? – NewUser