zoukankan      html  css  js  c++  java
  • C# 定义一个学生的结构体,输入学生信息,学号,姓名,身高,按身高排序输出

    class Program
    {

      //定义一个结构体
      struct student//student就是我们自己造的新数据类型
      {
        public int code;//public修饰符
        public string name;//结构体的成员
        public decimal height;
      }

      static void Main(string[] args)
      {
        ArrayList arr = new ArrayList();
        for (int i = 0; i < 3; i++)
        {
          student s = new student();//定义结构体变量
          Console.Write("学号:");
          s.code = int.Parse(Console.ReadLine());
          Console.Write("姓名:");
          s.name = Console.ReadLine();
          Console.Write("身高:");
          s.height = decimal.Parse(Console.ReadLine());

          arr.Add(s);
        }


        for (int i = 0; i < 2; i++)
        {
          for (int j = i + 1; j < 3; j++)
          {
            student si = (student)arr[i];
            student sj = (student)arr[j];

            if (si.height < sj.height)
            {
              student zhong = si;
              arr[i] = arr[j];
              arr[j] = zhong;
            }
          }
        }


        foreach (student s in arr)
        {
          Console.WriteLine(s.code + " " + s.name + " " + s.height);
        }

        Console.ReadLine();
      }
    }

  • 相关阅读:
    (转)python编写登录接口
    (转)Python之文件读写
    (转)python strip()函数 去空格 函数的用法
    (转)模块readline解析
    (转)跟着老男孩一步步学习Shell高级编程实战
    图片服务器优化 解决流量和存储问题
    某大型网站图片服务器改造方案
    雅虎网页优化14条原则
    独立的图片服务器架构
    城市分站设计思路
  • 原文地址:https://www.cnblogs.com/duan594939295/p/4941046.html
Copyright © 2011-2022 走看看