private static void demo() {
// TODO Auto-generated method stub
/**
* @author square 涼
* @功能 實現用戶輸入,自定義數組長度及數組元素。
*/
System.out.println("請輸入您要統計的Java考試成績的人數:");
Scanner input = new Scanner(System.in);
int num = input.nextInt();
int[] score= new int[num];
int sum = 0;
int lenth = score.length;
/**
* @功能 循環執行用戶輸入
*/
for(int i = 0;i < score.length;i++) {
System.out.println("請輸入第"+(i+1)+"爲學生的考試成績:");
int i1 = input.nextInt();
score[i] = i1;
sum += i1;
}
System.out.println(Arrays.toString(score));
System.out.println("學生的平均分爲:"+sum/lenth);
}數組