我哪里有问题啊 我在vs上面都没问题 在这里就不行
using System;
using System.Collections.Generic;
using System.Text;
namespace projGetMaxScore
{
class Program
{
static void Main(string[] args)
{
string[] name = new string[] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };
int[] a = new int[] {89,90,98,56,60,91,93,85 };
int max;
max = a[0];
int sy = 0;
for(int i=1;i<a.Length;i++)
{
if (a[i] > max)
{
max = a[i];
sy = i;
}
}
Console.Write("分数最高的是" +name[sy]+","+"分数是"+max);
}
}
}