一次考试,各位同学的姓名和分数如下:
请编写程序,输出分数最高的同学的姓名和分数。运行效果如下:
程序如下:
static void Main(string[] args)
{
string[] students = new string[] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };
int[] scores = new int[] { 89, 90, 98, 56, 60, 91, 93, 85 };
int score = scores[0];
int j = 0;
for (int i = 0; i < 8; i++)
{
if (scores[i] > score)
{
score = scores[i];
j = i;
}
}
Console.WriteLine("分数最高的是{0},分数为{1}", students[j], score);
}