求哪位大佬幫忙編一個(gè)程序,不要太小,要有注釋,急用
3 回答
已采納

ziom
TA貢獻(xiàn)948條經(jīng)驗(yàn) 獲得超1109個(gè)贊
import?java.util.Arrays; public?class?HelloWorld?{ ???? ????//完成?main?方法 ????public?static?void?main(String[]?args)?{ ????????HelloWorld?hw?=?new?HelloWorld(); ????????int[]?scores?=?{89,?-23,?64,?91,?119,?52,?73}; ????????hw.printTop3(scores);???? ???????? ????} ???? ????//定義方法完成成績(jī)排序并輸出前三名的功能 ????public?void?printTop3(int[]?scores)?{ ????????Arrays.sort(scores); ????????int?count?=?0; ????????System.out.println("考試成績(jī)的前三名為:"); ????????//?注意:循環(huán)變量變化應(yīng)為:i-- ????????for?(int?i?=?scores.length-1;?i?>=?0;?i--)?{ ????????????if?(scores[i]?>=?0?&&?scores[i]?<=?100)?{ ????????????????count++; ????????????????if?(count?>?3)?break; ????????????????System.out.println(scores[i]); ????????????} ????????} ????} ???? }
求采納
- 3 回答
- 0 關(guān)注
- 1454 瀏覽
添加回答
舉報(bào)
0/150
提交
取消