博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
0920,结构体
阅读量:5317 次
发布时间:2019-06-14

本文共 996 字,大约阅读时间需要 3 分钟。

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

结构体定义在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);         //    }

转载于:https://www.cnblogs.com/jlhea/p/4940729.html

你可能感兴趣的文章
Java报表工具FineReport导出EXCEL的四种API
查看>>
五个思路,教你如何建立金融业的数据分析管理模型
查看>>
easy html5 - Jquery mobile
查看>>
Linux内核笔记--内存管理之用户态进程内存分配
查看>>
arguments.callee()事例 参数检验
查看>>
Spring Boot—05页面跳转
查看>>
iptables (2) 基本配置
查看>>
postman--安装及Interceptor插件
查看>>
第十周总结
查看>>
算法马拉松13 A-E解题报告
查看>>
白白的(baibaide)
查看>>
Android-一张图理解MVP的用法
查看>>
OOD之问题空间到解空间—附FP的建模
查看>>
PHP和Mysql处理IP地址
查看>>
大型网站技术架构:核心原理与案例分析笔记
查看>>
ubuntu安装chrome driver
查看>>
jQuery系列(十四):jQuery中的ajax
查看>>
BZOJ2326 [HNOI2011]数学作业
查看>>
poj 1141 Brackets Sequence
查看>>
通过邮箱远程控制电脑
查看>>