不知道哪里错了
namespace ConsoleApp11
{
class Program
{
static void Main(string[] args)
{
string[] names = new string[8] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };
int[] scores = new int[8] { 89, 90, 98, 56, 60, 91, 93, 85 };
int x = 0;
for (x=0;x<8;x++ )
{
if (scores[x] > scores[0])
{
scores[0] =scores[x];
}
}
int max = scores[0];
Console.Write("分数最高的是" + names[x] + "分数是" + max );
}
}
}