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

哪里错了呢?为什么内部的if不好使

package com.my;


import java.util.Arrays;


public class HelloWord {

public static void main(String[] args) {

HelloWord hello = new HelloWord();

int[] scores = { 89, -23, 64, 91, 119, 52, 73 };

hello.mxTre(scores);


}


// 定义方法完成成绩排序并输出前三名的功能


public void mxTre(int[] scores) {

Arrays.sort(scores);

for (int i = scores.length - 1; i >= 0; i--) {

int A = 0;

if (scores[i] < 0 || scores[i] > 100)

continue;

else {

if (A < 3) {

System.out.println(scores[i]);

A++;


}

}

}

}


}


正在回答

1 回答

for循环 每次循环都执行int A = 0;

所以else条件中的A<3每次都成立!

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

举报

0/150
提交
取消

哪里错了呢?为什么内部的if不好使

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