用c#编写程序,输出姓名和最高分数

时间:2023-01-08 08:39:43
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace test06_1
{
    class Program
    {
        static void Main(string[] args)
        {
            // string[,] score = new string[8, 2] { { "吴松", "89" }, { "钱东宇", "90" }, { "伏晨", "98" }, { "陈璐", "56" }, { "周瑞", "60" }, { "林日鹏", "91" }, { "何晶", "93" }, { "关欣", "85" } };
            string[] name = new string[]{ "吴松", "钱东宇", "伏晨", "陈璐", "周蕊", "林日鹏", "何晶", "关欣" };
            int[] scores = new int[] { 89,90,98,56,60,91,93,85};
            int score = scores[0];
            int j = 0;
            for (int i = 0; i < scores.Length; i++) {
                if (scores[i] > score) {
                    score = scores[i];
                    j = i;
                }
            }
            Console.WriteLine("分数最高的是{0},分数为{1}", name[j], score);
        }
       
    }
}

1 个解决方案

#1


是什么问题?你完全没说嘛
还有这里是脚本语言,C#不是

看逻辑,应该是能实现

#1


是什么问题?你完全没说嘛
还有这里是脚本语言,C#不是

看逻辑,应该是能实现