1 回答
TA贡献2条经验 获得超0个赞
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 = 0; x < score.Length; x++)
{
if (score[x] > score[y])
{
y = x;
}
// else continue;
}
Console.WriteLine("分数最高的是"+name[y]+"分数是"+score[y]);
}
}
}
- 1 回答
- 0 关注
- 1171 浏览
添加回答
举报