using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
int[] score = new int[8] { 89, 90, 98, 56, 60, 91, 93, 85 };
int y = 0;
string[] name = new string[8] { "吴松", "钱东宇", "伏晨", "陈陆", "周蕊", "林日鹏", "何昆", "关欣" };
for (int x = 1; x <= score.Length; x++)
{
if (score[x] > score[0])
{
y = x;
}
else continue;
}
Console.WriteLine("分数最高的是{0},分数是{1}", name[y], score[y]);
}
}
}
慕尼黑0172299
相关分类