課程
/后端開(kāi)發(fā)
/Java
/Java入門(mén)第一季(IDEA工具)升級(jí)版
我這段代碼錯(cuò)哪里?請(qǐng)問(wèn)在方法里面能定義另外一個(gè)數(shù)組嗎?我定義的另外一個(gè)數(shù)組變量scores1[],謝謝
2016-05-19
源自:Java入門(mén)第一季(IDEA工具)升級(jí)版 7-1
正在回答
import java.util.Arrays;public class HelloWorld {//完成 main 方法public static void main(String[] args) {int scores[]={89,-23,64,91,119,52,73};HelloWorld php=new HelloWorld();php.sorts(scores);}//定義方法完成成績(jī)排序并輸出前三名的功能public void sorts(int[] scores){int scores1[];for(int i=scores.length;i>=0;i--){if (scores[i]<0){continue;}int scores1[];j=0;scores1[j]=scores[i];j++;}Arrays.sort(scores1);System.out.println("考試成績(jī)的前三名為:");for(int i=0;i<3;i++){scores1[i];}}?}
親,你的代碼呢?
舉報(bào)
0基礎(chǔ)萌新入門(mén)第一課,從Java環(huán)境搭建、工具使用、基礎(chǔ)語(yǔ)法開(kāi)始
2 回答打印輸出一定要在主方法里面嗎,如果在主方法外面會(huì)怎么樣
2 回答如何定義一個(gè)空的數(shù)組
2 回答數(shù)組定義;
1 回答定義一個(gè)整型數(shù)組nums,那么nums.length是該數(shù)組長(zhǎng)度嗎?
1 回答該題代碼可以定義為一個(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)
2016-05-24
import java.util.Arrays;
public class HelloWorld {
//完成 main 方法
public static void main(String[] args) {
int scores[]={89,-23,64,91,119,52,73};
HelloWorld php=new HelloWorld();
php.sorts(scores);
}
//定義方法完成成績(jī)排序并輸出前三名的功能
public void sorts(int[] scores){
int scores1[];
for(int i=scores.length;i>=0;i--){
if (scores[i]<0){
continue;
}
int scores1[];j=0;
scores1[j]=scores[i];
j++;
}
Arrays.sort(scores1);
System.out.println("考試成績(jī)的前三名為:");
for(int i=0;i<3;i++){
scores1[i];
}
}?
}
2016-05-20
親,你的代碼呢?