不知道哪里错了。。明明用得也是英文,变量名也是一样得
HelloWorld.java:14: error: incompatible types: int cannot be converted to String
for (String score:scores) {
^
1 error
int[] scores = { 89, 72, 64, 58, 93 };
// 对Arrays类对数组进行排序
Arrays.sort(scores);
// 使用foreach遍历输出数组中的元素
for (String score:scores) {
System.out.println(score);
}