第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定

編譯器顯示語法沒錯,就是運行不了

package com.text2;

import java.util.Arrays;


public class HelloWorld {


public static void main(String[] args) {

// TODO Auto-generated method stub

? ? ? ? HelloWorld hello=new HelloWorld();

? ? ? ? int [] scores={89,-23,64,91,119,52,73};

? ? ? ? int [] nums=new int [3];

? ? ? ? nums=hello.topThree(scores);

? ? ? ? System.out.println("考試成績的前三名為:");

? ? ? ? for(int i=0;i<3;i++){

? ? ? ? System.out.println(nums[i]);

? ? ? ? }

}

public int [] topThree(int [] scores){

Arrays.sort(scores);

int [] nums=new int [3];

int i=0;

for(int j=scores.length-1;j>=0;j--){

if(scores[j]<0||scores[j]>100){

continue;

}

nums[i]=scores[j];

i++;

if(i>3)

break;

}

return nums;

}


}


正在回答

1 回答

越界了,int [] nums=new int [3];改為int [] nums=new int [scores.length];

0 回復 有任何疑惑可以回復我~

舉報

0/150
提交
取消

編譯器顯示語法沒錯,就是運行不了

我要回答 關注問題
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號