看不懂这个,有没有大佬指点一下
using System;
using System.Collections.Generic;
using System.Text;
namespace projGetMaxScore
{
class Program
{
static void Main(string[] args)
{
int[] num = new int[] { 89, 90, 98, 56, 60, 91, 83, 85 };
string []name = new string[]{ "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣", };
int max = num[0];
string name1 = name[0];
foreach(int x in num)
{
if(max<num[0])
{
max = num[x];
name1 = name[x];
}
}
Console.WriteLine("成绩最好的是{0},他是{1}", max, name1);
}
}
}