会了 自己附个正确答案

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
浏览 1141回答 1
1回答

慕尼黑0172299

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]);        }    }}
打开App,查看更多内容
随时随地看视频慕课网APP