using System;
using System.Collections.Generic;
using System.Text;
namespace projGetMaxScore
{
class Program
{
static void Main(string[] args)
{
int j,max;
max = j = -1;
int[] score=new int[8]{89,90,98,56,60,91,93,85};
string[] name=new string[8]{"吴松","铁东宁","伏晨","陈陆","周蕊","林日鹏","何昆","关欣"};//申明姓名数组
for (int i = 0; i < 8;i++ )
{
if (max < score[i])
{
j++;
max = score[i];
}
}
Console.Write("分数最高的是{0},分数是{1},",name[j],max);
}
}
}
慕婉清0_郁乱我心