首页 > 代码库 > java.util. Arrays.sort(scores);
java.util. Arrays.sort(scores);
import java.util.*; public class ArraySortScore { //完成 main 方法 public static void main(String[] args) { int counter=0; int[] scores=new int[]{89 , -23 , 64 , 91 , 119 , 52 , 73}; SortScore(scores); int index=0; while(index<scores.length) { System.out.println(scores[index]); index+=1; } System.out.println("考试成绩的前三名为:"); index=0; while(index<scores.length) { if(scores[index]>=0 && scores[index]<=100) { System.out.println(scores[index]); counter+=1; if(counter==3) break; } index+=1; } } //定义方法完成成绩排序并输出前三名的功能 public static void SortScore(int[] scores) { Arrays.sort(scores); } }
---------- java ---------- -23 52 64 73 89 91 119 考试成绩的前三名为: 52 64 73 Output completed (0 sec consumed) - Normal Termination
java.util. Arrays.sort(scores);
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。