资源描述:
《c#上机实验题目和答案7》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、(1)创建一个控制台应用程序,在该程序中定义一个School类,该类中有一个私有的整型数组grade,用来存储学生的成绩,还有一个公共的整型索引器,用来读写grade数组中的各元素,该类中还有一个公共的构造函数,给grade数组初始化为有10个元素。在Program类的Main()方法中声明一个SchooI类实例,然后利用索引来对grade数组中的元素进行赋值和显丁O(2)创建一个控制台应用程序,在程序中定义一个性别枚举类型,性别枚举类型只有两个元素:female和male。再定义一个学生结构类型,其中包括学号、姓名、性别、年龄字段,其中学号、姓名为字符串类型,性别为枚举类型,年龄为整型。
2、在Main方法中声明一个学生结构类型的变量,给它的各个成员赋值,然后以字符串的形式输出它的各个成员的值。(3)创建一个控制台应用程序,从10个整数中找出最大数和次大数。5.实验数据记录及分析(或程序及运行结果)1.usingSystem;usingSystem.Collections・Generic;usingSystem.Text;namespaceConsoleApplicationl{classSchool{privateint[]grade;publicintthis[intindex]{set{if(index>=0&&index<10)grade[index]=value;}g
3、et{if(index>=0&&index<10)returngrade[index];elsereturn0;}}publicSchool(){grade=newint[10];}}classProgram{staticvoidMain(string[]args){SchoolSgrade二newSchool():Sgrade[0]=60;Sgrade[1]=70;Sgrade[3]=80;Sgrade[5]=90;Sgrade[7]二99;Sgrade[9]=59;for(inti=0;i<10;i++)i,Sgrade[i]);Console.WriteLine(,z同学{0}成绩为
4、⑴",^j^i^^4?*^^^4?^£一页责1#贵s#责H三会一・±7兰・±7N<兰Au.gJ-e巳00099^-708090^05宙rrrtrtrt9纟2.usingSystem;usingSystem.Collections・Generic;usingSystem.Text;namespaceConsoleApplication2{enumSex{femtile,male}structStudent{publicstringntime;publicstringnumber;publicintage;publicSexsex;}classProgrtimstaticvoidMain(st
5、ring[]args)Studental=newStudent();Studenta2二newStudent();al.name"al";al.number="106700";al.age=20;臼1・sex=Sex.female;q2・name=;a2.number="106701";a2.age二21;“2・sex二Sex.male;Console.WriteLine(,zricime={0},numbered},age={2),Sex={3}/Z,日1・name,日1・number,臼1・age,臼1・sex);Console.WriteLine(z,name={0),number=
6、{1},age={2),Sex={3),z,q2・name,q2・number,a2・age,a2.sex);}}}cfC:、■工NDOTSVsysteM32c&d.exename=al亠number=106700,age=20^Sex=£emalepane=a2.number=106701.age=21Sex=niale储按任意犍继续.・・3.usingSystem;usingSystem.Collections・Generic;usingSystem.Text;namespaceConsoleApplication3{publicclassBubbleSorter{publicvoi
7、dsort(int[]1ist){inti,j,temp;booldone=false;j=1;while((j1ist[i+1])done=false;temp=list[i];list[i]=list[i+1];list[i+1]=temp;}}j++;}}}classPr