《设计一个学生类student(3页).doc》由会员分享,可在线阅读,更多相关《设计一个学生类student(3页).doc(3页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。
1、-1.2.3.4. 设计一个学生类student-第 3 页5. 设计一个学生类student,它具有的私有数据成员是:学号、姓名、数学、英语、计算机成绩;具有的公有成员函数是:求三门课总成绩的函数sum;求三门课平均成绩的函数average;显示学生数据信息的函数print;获取学生学号的函数get_reg_num;设置学生数据信息的函数set_stu_inf。编制主函数,说明一个student类对象的数组并进行全班学生信息的输入与设置,而后求出每一学生的总成绩、平均成绩、全班学生总成绩最高分、全班学生总平均分,并在输入一个注册号后,输出该学生有关的全部数据信息。using System;u
2、singusing System.Linq;using System.Text;namespace ConsoleApplication1 class student private string num; private string name; private float math, english, computer; public float sum() return math + english + computer; public float avg() return sum() / 3; public void print(float sum, float avg) Consol
3、e.WriteLine(三门课总成绩为:0,三门课平均成绩为:1, sum, avg); public string get_num() return num; public void set_inf(string num, string name, float math, float eng, float comp) this.num = num; this.name = name; this.math = math; this.english = eng; puter = comp; /学号查询 public static void find(student stu1, string nu
4、m) for (int i = 1; i 3; i+) if (stu1i.num = num) Console.WriteLine(姓名:0,学号:1,数学成绩:2,英语成绩:3,计算机成绩:4,平均成绩为:5, stu1i.name, stu1i.num, stu1i.math, stu1i.english, puter, stu1i.avg(); break; return; class Program static void Main(string args) student stu = new student5; float max = 0; for (int i = 1; i ma
5、x) max = sum; int k = i; float avg = stui.avg(); stui.print(sum, avg); Console.WriteLine(全班总成绩最高为:0, max); float total = 0; for (int j = 1; j 3; j+) total = total + stuj.sum(); float average = total / 2; Console.WriteLine(全班的平均成绩为:0, average); Console.WriteLine(请输入要查找的学生的学号:); string num = Console.ReadLine(); student.find(stu, num);