6.17 复习 根据学生分数进行学生信息的 冒泡排序
Posted 岁月静好123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6.17 复习 根据学生分数进行学生信息的 冒泡排序相关的知识,希望对你有一定的参考价值。
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; namespace 复习CS { class Program { struct Student { public int num; public string Code; public string Name; public decimal Score; } static void Main(string[] args) { //1、循环添加学生信息 ArrayList list = new ArrayList(); for (int i = 1; i < 4; i++) { Student s = new Student(); //实例化 Console.Write("请输入第" + i + "个学生的学号:"); s.Code = Console.ReadLine(); Console.Write("请输入第" + i + "个学生的姓名:"); s.Name = Console.ReadLine(); Console.Write("请输入第" + i + "个学生的成绩:"); s.Score = Convert.ToDecimal(Console.ReadLine()); s.num = i; list.Add(s); Console.WriteLine("==============================="); } Console.WriteLine("-----------------------学生数据展示--------------------------"); //2、排序 for (int i = 0; i < list.Count - 1; i++) { for (int j = i + 1; j < list.Count; j++) { Student s1 = (Student)list[i]; Student s2 = (Student)list[j]; if (s1.Score < s2.Score) { Object ob = list[i]; list[i] = list[j]; list[j] = ob; } } } //3、打印 foreach (object o in list) { Student ss = (Student)o; Console.WriteLine("第" + ss.num + "个学生的学号:" + ss.Code + ",姓名:" + ss.Name + ",分数:" + ss.Score + "。"); } Console.ReadKey(); } } }
以上是关于6.17 复习 根据学生分数进行学生信息的 冒泡排序的主要内容,如果未能解决你的问题,请参考以下文章
关于学生信息管理的C语言编程问题求救(一定要是C语言编程,谢谢)
sql: 联系题26 ,27查询平均成绩大于等于 85 的所有学生的学号姓名和平均成绩,查询课程名称为「数学」,且分数低于 60 的学生姓名和分数