我几秒钟就做出来了0.0

来源:6-1 练习题目

qq_精慕门0318407

2019-03-11 12:06

Console.WriteLine("分数最高的是伏晨,分数是98");

写回答 关注

3回答

  • hero_奥特曼
    2019-03-12 14:19:57

    using System;

    using System.Collections.Generic;

    using System.Text;

    using System.Collections;


    namespace projGetMaxScore

    {

        class Program

        {

            static void Main(string[] args)

            {

                string[,] names = new string[,] { { "吴松", "89" }, { "钱东宇", "90" }, { "伏晨", "98" }, { "陈陆", "56" }, { "周蕊", "60" }, { "林日鹏", "91" }, { "何昆", "93" }, { "关欣", "85" } };

                string student = "None";

                int max = 0;

                for (int i=0;i<8;i++)

                {

                    int text= Convert.ToInt32(names[i, 1]);

                    string name = names[i,0];

                    if(text>max)

                    {

                        max=text;

                        student=name;

                        

                    }

                }

                Console.WriteLine("最高分数的是"+student+",分数是"+max+"。");

            }

        }

        

    }


  • hero_奥特曼
    2019-03-12 13:51:57

    using System;

    using System.Collections.Generic;

    using System.Text;

    using System.Collections;


    namespace projGetMaxScore

    {

        class Program

        {

            static void Main(string[] args)

            {

                string []name={"吴松","钱东宇","伏晨","陈陆","周蕊","林日鹏","何昆","关欣"};

                int [] grades= {89,90,98,56,60,91,93,85};

                int k=0;

                int max = grades[0];

                for (int i=0;i<grades.Length;i++)

                {

                    if (grades[i]>max)

                    {

                        max=grades[i];

                        k=i;

                        

                    }

                

                }

                Console.WriteLine("最高分数的是"+name[k]+",分数是"+max+"。");

                

                

                

            }

        }


  • 李LILI
    2019-03-11 17:49:59

    你好厉害啊?

C#开发轻松入门

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

254118 学习 · 1459 问题

查看课程

相似问题