问答详情
源自:6-1 练习题目

这样可行吗

using System;

using System.Collections.Generic;

using System.Text;


namespace projGetMaxScore

{

    class Program

    {

        public class Student

        {

            public string name { get; set; }

            public int score { get; set; }

      

        }

        static void Main(string[ ] args)

        {



            List<Student> students = new List<Student>

            {

                new Student() { name="吴松", score=89},

                new Student() { name="钱东宇", score=90},

                new Student() { name="伏晨",score=98},

                new Student() { name="陈陆",score=56},

                new Student() { name="周蕾",score=60},

                new Student() { name="林日鹏",score=91},

                new Student() { name="何昆",score=93},

                new Student() { name="关欣", score=85}

            };


            int HighScore = 0;

            string winnerName = "";

            foreach (Student v in students)

            {

                if (v.score > HighScore)

                {

                    HighScore = v.score;

                    winnerName = v.name;

                }

                

            }


            Console.WriteLine("分数最高的是{0},分数是{1}", winnerName, HighScore);

        }

    }

}


提问者:幕后3420348 2016-05-27 23:39

个回答

  • 君遥
    2016-06-04 10:26:56

    你都会抢答了啊

  • 墨轩2213
    2016-05-31 08:17:26

    good

  • hand208
    2016-05-31 00:15:25

    good job!