int temp =0;
string []arr = new string[]{"吳松","錢東宇","伏晨","陳陸","周蕊","林日鵬","何琨","關欣"};
int []arr1 = new int[]{89,90,98,56,60,91,93,85} ;
for(int i =0;i<8;i++)
{
if (arr1[temp] < arr1[i])
temp = i;
}
Console.WriteLine("分數最高的是{0},分數是{1},",arr[temp],arr1[temp]);