色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

用Java中的while循環語句編寫從鍵盤上輸入十個學生的成績求出總分

夏志豪2年前23瀏覽0評論

用Java中的while循環語句編寫從鍵盤上輸入十個學生的成績求出總分?

一言不合就上代碼

import java.util.Scanner;

public class Demo {

public static void main(String[] args) {

Scanner sc=new Scanner(System.in);

int i=0;

int[] a=new int[10];

while(i<10){

System.out.println("請輸入第"+(i+1)+"個學生的成績:");

a[i]=sc.nextInt();

i++;

}

int count=0;

for(int j=0;j<10;j++){

count=count+a[j];

}

System.out.println("總分:"+count);

double avg=0;

avg=(double)count/a.length;

System.out.println("平均分:"+avg);

int max=a[0];

for(int j=1;j<10;j++){

if(max<a[j]){

max=a[j];

}

}

System.out.println("最大值:"+max);

int min=a[0];

for(int j=1;j<10;j++){

if(min>a[j]){

min=a[j];

}

}

System.out.println("最小值:"+min);

}

}

循環java,用Java中的while循環語句編寫從鍵盤上輸入十個學生的成績求出總分