package com.gzq;import java.util.Arrays;public class HelloWorld { public static void main(String[] args) { int[]scores=new int[]{89,-23,64,91,119,52,73}; System.out.println("考试成绩的前三名为:"); HelloWorld hello=new HelloWorld(); hello.getArray(scores); } //定义方法完成成绩排序并输出前三名的功能 public void getArray(int[] scores){ Arrays.sort(scores); int aa=0; for(int i=scores.length-1;i>=0;i--){ if((scores[i]<0)||(scores[i]>100));{ continue; } aa++; while(aa>3); break; } System.out.println(scores[i]); }} 提示我最后一句System.out.println(scores[i])中的i错了!!为什么啊啊啊啊????
添加回答
举报
0/150
提交
取消