• 0920,结构体


    结构体:用户自定义数据类型,实际是变量组,可以一次存多个不同变量

    结构体定义在main函数的外面

    string 结构体名

    {

     // 元素一  // 元素二 

    }

    //定义一个结构体        

    //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);         //    }

  • 相关阅读:
    CentOS 7 修改root密码
    Centos7网络连接不上:Network is unreachable 解决方案
    CentOS7常用命令
    cousera-冷冻电镜笔记-EM Lenses
    cousera-冷冻电镜笔记-Electron Guns
    cousera-冷冻电镜笔记-Introduction: Why Electrons?
    fit_transform,fit,transform区别和作用详解!!!!!!
    数字图像处理基础(采样、量化、邻域、连通性)
    伯努利分布、二项分布、多项分布、Beta分布、Dirichlet分布、连续分布(正态分布)、大数定理、中心极限定理、贝叶斯理论
    信息熵及其相关概念
  • 原文地址:https://www.cnblogs.com/jlhea/p/4940729.html
Copyright © 2020-2023  润新知