运行成功了,咋还是提示错误
string[,] str = { { "吴松", "钱东宇", "伏晨", "陈陆", "周芯", "林日鹏", "何昆", "关欣" }, {"89", "90", "98", "56", "60", "91", "93", "93"} };
int max = Convert.ToInt32(str[1, 0]);
int x=0;
for (int i = 1; i < str.GetLength(1); i++)
{
if (max < Convert.ToInt32(str[1, i]))
{
max = Convert.ToInt32(str[1, i]);
x = i;
}
}
Console.Write("分数最高是{0},分数是{1}", str[0, x], str[1, x]);