为了账号安全,请及时绑定邮箱和手机立即绑定

不知道哪里错了。。明明用得也是英文,变量名也是一样得

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);
  }

正在回答

5 回答

上面有报错信息啊,int不能被修改为Sting

0 回复 有任何疑惑可以回复我~

数据类型不一样哟

0 回复 有任何疑惑可以回复我~

应该用int我的运行出来了

0 回复 有任何疑惑可以回复我~

对的,类型错误,你上面是int类型, for中也要是int类型 

0 回复 有任何疑惑可以回复我~

foreach输出语句错了,应该是for(int score : scores)

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

不知道哪里错了。。明明用得也是英文,变量名也是一样得

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信