課程
/后端開(kāi)發(fā)
/Java
/Java入門(mén)第一季(IDEA工具)升級(jí)版
有人做了沒(méi),希望能發(fā)下代碼看下。我現(xiàn)在完全沒(méi)有思路。
2017-05-21
源自:Java入門(mén)第一季(IDEA工具)升級(jí)版 7-1
正在回答
package com.start;import java.util.Arrays;public class Demo02 {?? ?public static void main(String[] args) {?? ??? ?int[] scores = { 89, -23, 64, 91, 119, 52, 73 };?? ??? ?Demo02 demo = new Demo02();?? ??? ?System.out.println("前三名:");?? ??? ?demo.sortscore(scores);?? ?}?? ?public void sortscore(int[] scores) {?? ??? ?Arrays.sort(scores); // 先排序從小到大 ,排序后:-23,52,64,73,89,91,119?? ??? ?/*?? ??? ? * 為什么是i 是scores.length-1 要實(shí)現(xiàn)是分?jǐn)?shù)前三 ,從大到小?? ??? ? */?? ??? ?int num = 0;?? ??? ?for (int i = scores.length - 1; i >= 0; i--) {?? ??? ??? ?// 循環(huán)是從scores[6],119開(kāi)始 ,?? ??? ??? ?if (scores[i] >= 0 && scores[i] <= 100) { // 判斷有效成績(jī)?? ??? ??? ??? ?if (num <= 3) { // 只取前3?? ??? ??? ??? ??? ?System.out.println(scores[i]);?? ??? ??? ??? ?}?? ??? ??? ?}?? ??? ??? ?num++;?? ??? ?}?? ?}}
點(diǎn)“不會(huì)了 ?怎么辦”
舉報(bào)
0基礎(chǔ)萌新入門(mén)第一課,從Java環(huán)境搭建、工具使用、基礎(chǔ)語(yǔ)法開(kāi)始
4 回答8-1編程練習(xí)
3 回答求8-1 編程練習(xí)指導(dǎo)
3 回答編程練習(xí)8-1,error: not a statement
3 回答8-1編程練習(xí),不知道怎么改,請(qǐng)大神幫忙看一下
2 回答8-1 編程練習(xí) 另一個(gè)思路
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2017-05-22
package com.start;
import java.util.Arrays;
public class Demo02 {
?? ?public static void main(String[] args) {
?? ??? ?int[] scores = { 89, -23, 64, 91, 119, 52, 73 };
?? ??? ?Demo02 demo = new Demo02();
?? ??? ?System.out.println("前三名:");
?? ??? ?demo.sortscore(scores);
?? ?}
?? ?public void sortscore(int[] scores) {
?? ??? ?Arrays.sort(scores); // 先排序從小到大 ,排序后:-23,52,64,73,89,91,119
?? ??? ?/*
?? ??? ? * 為什么是i 是scores.length-1 要實(shí)現(xiàn)是分?jǐn)?shù)前三 ,從大到小
?? ??? ? */
?? ??? ?int num = 0;
?? ??? ?for (int i = scores.length - 1; i >= 0; i--) {
?? ??? ??? ?// 循環(huán)是從scores[6],119開(kāi)始 ,
?? ??? ??? ?if (scores[i] >= 0 && scores[i] <= 100) { // 判斷有效成績(jī)
?? ??? ??? ??? ?if (num <= 3) { // 只取前3
?? ??? ??? ??? ??? ?System.out.println(scores[i]);
?? ??? ??? ??? ?}
?? ??? ??? ?}
?? ??? ??? ?num++;
?? ??? ?}
?? ?}
}
2017-05-22
點(diǎn)“不會(huì)了 ?怎么辦”