foreach操作
int[] scores;
是 for(int score:scores)
System.out.println(score);
还是
for(int scores:scores)
System.out.println(scores);
为什么?
int[] scores;
是 for(int score:scores)
System.out.println(score);
还是
for(int scores:scores)
System.out.println(scores);
为什么?
2016-03-29
举报