各位大神能帮忙看下报错原因吗?
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
int[] cj = new int[] { 89, 90, 93, 56, 60, 91, 98, 85 };
string[] name = new string[] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };
int x = 0;
int w = 0;
for (int i = 0; i < 9; i++)
{ if (cj[i] > x)
{ x = cj[i]; }
}
{
w = x;
Console.WriteLine("分数是"+ w);
}
for (int j = 0; j< 9; j++)
{ if (cj[j] == w)
{
Console.WriteLine("分数最高的是" + name[j]);
break;
}
}
}
}
}