标签: java loops
{{1}}
答案 0 :(得分:1)
您的第二个循环定义不正确,尝试这样的事情。
for (i = NUM_VALS - 1; i >= 0; i--) { System.out.print(courseGrades[i] + " "); }