案例:利用累加器计算前N个学生的总成绩和平均成绩

时间:2023-01-10 15:37:03
 /*
*录入N个学生的成绩,并求出这些学生的总成绩和平均成绩!
* */
import java.util.Scanner; public class SumTest{
public static void main(String args[]){ int i = 0;
int sum = 0;
System.out.println("请输入总学生的数量:");
Scanner sc = new Scanner(System.in );
int n = sc.nextInt();
while( i < n){
i++;
System.out.println("请输入第"+ i + "个学生的成绩:");
int score = sc.nextInt();
sum += score;
}
System.out.println("前"+ n + "个学生的总成绩为:" + sum + "\n平均成绩为:" + (sum/n));
}
}