我的代码运行出来了,为什么还是提交过不了
using System;
using System.Collections.Generic;
using System.Text;
namespace projGetMaxScore
{
class Program
{
static void Main(string[] args)
{
string[] name=new string[8];
name[0]="吴松";
name[1]="钱东宇";
name[2]="伏晨";
name[3]="陈陆";
name[4]="周蕊";
name[5]="林日鹏";
name[6]="何昆";
name[7]="关欣";
int[] score=new int[] {89,90,98,56,60,91,93,85};
int max=score[0];
int count=0;
for(int i=1;i<8;i++ )
{
if(score[i]>max)
{
max=score[i];count=i;
}
}
Console.Write("分数最高的是"+name[count]+","
+"分数是"+score[count]);
}
}
}