Console.WriteLine("请依次输入十个学生的年龄"); int[] age = new int[10]; int i = 0;//声明数组中的0-9的索引数。 int sum = 0; int max=0; for ( i = 0; i <10; i++) { age[i] = int.Parse(Console.ReadLine()); sum += age[i]; if (age[i] > max) { max = age[i]; } } Console.WriteLine("平均年龄为"+sum/10); Console.WriteLine("10个学生中年龄最大为"+max); Console.ReadLine();
时间: 2024-10-04 06:59:09