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

最后一章题

import java.util.Arrays;

public class HelloWorld {

    

    //完成 main 方法

    public static void main(String[] args) {

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

    HelloWorld hello=new HelloWorld();

    hello.showTop3(scores);

    

    public void showTop3(int [] scores){

        Arrays.sort(scores);

        int count=0;

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

    {if(scores[i]<0 || scores[i]>100) continue;}

    count++;

    if(count>3)

    break;

    }

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

    }    

帮忙找找错误

正在回答

2 回答

你的大括号少了不说,那行打印输出的代码还放错位置了,主函数定义数组scores写成socres了

0 回复 有任何疑惑可以回复我~
public static void main(String[] args) {
    int[] scores={89,-23,64,91,119,52,73};
    HelloWorld hello=new HelloWorld();
    hello.show(scores);
    }
    
    public void show(int[] scores){
        Arrays.sort(scores);
        int count=0;
        for(int i=scores.length-1;i>=0;i--){
        	if(scores[i]<0 || scores[i]>100) {
        		continue;
        	}
        count++;
        if(count>3) {
        break;
        }
        System.out.println(scores[i]);
        }
    }
}


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

举报

0/150
提交
取消

最后一章题

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