。。。为什么不能提交成功
{
int high=0;
int i=0;
string []student=new string[]{"吴松","钱东宇","伏晨","陈陆","周蕊","林日鹏","何昆","关欣"};
int []score=new int[]{89,90,98,56,60,91,93,85};
for(int x=0;x<score.Length;x++){
if(score[x]>high){
high=score[x];
i=x;
}
}
Console.WriteLine("分数最高的是"+student[i]+",分数是"+score[i]);
}