class Program { static void Main(string[] args) { int[] a = new int[5]; Console.WriteLine("请输入5个整数:"); for(int i = 0; i < a.Length; i++) { a[i] = int.Parse(Console.ReadLine());//将字符串类型转换成整型 } int max = a[0];//这里假设a[0]是最大的 for(int i = 1; i < a.Length; i++) { if (a[i] > max) { max = a[i]; } } Console.WriteLine("数组中最大值为:" + max); } }