用Math.random()方法随机生成十个学生的成绩,计算这十个学生的平均成绩

package tag;

/*
 * 用Math.random()方法随机生成十个学生的成绩,计算这十个学生的平均成绩
 * 
 */
public class Test3 {

	public static void main(String[] args) {
		int sum = 0;

		for (int i = 0; i < 10; i++) {
			int stu = (int) (Math.random() * 100);
			sum += stu;

			System.out.println("第" + (i + 1) + "个学生的成绩:" + stu);
		}

		System.out.println("这十个学生的平均成绩为:" + sum / 10);
	}
}

你可能感兴趣的:(java基础)