第七章練習題

Duanhaifeng55發表於2018-04-08

//利用陣列迴圈求出5個數值中的最大值

public static void dofem() {

int []scores = new int[5];
int max=0;
max=scores[4];
System.out.println("請輸入五位學員的成績:");
Scanner input = new Scanner(System.in);
for (int i = 0; i < scores.length; i++) {
scores[i]=input.nextInt();
if(scores[i]>max) {
max=scores[i];
}
}
System.out.println("考試成績最高分為:"+max);
}