string[] names=new string[]{"吴松","钱东宇","伏晨","陈陆","周蕊","林日鹏","何昆","关欣"};
int[] score=new int[]{89,90,98,56,60,91,93,85};int max=0;
for(int i=0;i<score.Length;i++)
{if(max<score[i]) max=score[i]; }
for(int j=0;j<score.Length;j++)
{if(max==score[j]) Console.WriteLine("分数最高的是"+names[j]+','+"分数是"+max);}
int[] score=new int[]{89,90,98,56,60,91,93,85};int max=0;
for(int i=0;i<score.Length;i++)
{if(max<score[i]) max=score[i]; }
for(int j=0;j<score.Length;j++)
{if(max==score[j]) Console.WriteLine("分数最高的是"+names[j]+','+"分数是"+max);}