本帖最后由 余尚勇 于 2013-6-26 23:21 编辑
帮忙看下代码,感觉没错,结果却是0,不知道哪里错了?
#region 从键盘接收用户输入的数字并求最大值
Console.WriteLine("请输入你要求的数字的个数:");
int num = int.Parse(Console.ReadLine());
int[] scores = new int[num];
int max = scores[0];
for (int i = 0; i < scores.Length; i++)
{
Console.WriteLine("请输入第{0}个人的成绩:",i+1);
int score = int.Parse(Console.ReadLine());
for (int j = 0; j < scores.Length; j++)
{
if (scores > max)
max = scores;
}
}
Console.WriteLine("最大数是:{0}",max);
#endregion
Console.ReadKey(); |
|