C#例題:輸入學生學號,姓名,分數,然後根據分數進行排序。這個題是用集合和結構體來做,與上一題不同。掌握基礎知識很重要

來源:互聯網
上載者:User

標籤:

 class Program    {        struct student        {            public string name;            public int code;            public int age;            public double fenshu;                                                                                                                                                                                                                                                                                        }        static void Main(string[] args)        {            ArrayList al = new ArrayList();  //定義一個新的集合            Console.Write("請輸入人數:");            int renshu = Convert.ToInt32(Console .ReadLine ());            for (int i = 0; i <renshu; i++)            {                student r = new student();                Console.Write("請輸入第"+(i+1)+"個人的名字:");                r.name = Console.ReadLine();                Console.Write("請輸入第" + (i + 1) + "個人的學號:");                r.code = Convert.ToInt32(Console .ReadLine ());                Console.Write("請輸入第" + (i + 1) + "個人的年齡:");                r.age = Convert.ToInt32(Console .ReadLine ());                Console.Write("請輸入第" + (i + 1) + "個人的分數:");                r.fenshu = Convert.ToDouble(Console .ReadLine ());                al.Add(r);                                            //把r的資料都放在al這個集合裡            }                ; for (int i = 0; i < renshu ; i++)                {                    for (int j = i; j < renshu-1; j++)                                            if (((student)al[i]).fenshu<((student )al[j+1]).fenshu)  //從student 結構體的集合裡調出分數進行比較                        {                            student zhong;                            zhong = (student )al[i];                            al[i] = al[j + 1];                            al[j+ 1] = zhong;                        }                    }            Console .WriteLine ("排序後學生順序:");                for (int i = 0; i < renshu; i++)                {                    Console.WriteLine("名字\t" + ((student)al[i]).name + "學號\t" + ((student)al[i]).code + "年齡\t" + ((student)al[i]).age                        + "分數\t" + ((student)al[i]).fenshu );                                   }                Console.ReadLine();                }            }        }

 

C#例題:輸入學生學號,姓名,分數,然後根據分數進行排序。這個題是用集合和結構體來做,與上一題不同。掌握基礎知識很重要

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.