首页 > 软件 > :私有成员:学号,姓名,性别等信息(进阶:课程成绩,求平均等)。 可以修改和输出对象的上述信息

:私有成员:学号,姓名,性别等信息(进阶:课程成绩,求平均等)。 可以修改和输出对象的上述信息

软件 2023-05-13

1.设计一个学生类student,它的私有数据成员包括:学号,姓名,数学,英语,计算机

public class Student { //定义一个学生类 private int StuNum; //学号 private int Name; //姓名 private char Sex; //性别 private int Age; //年龄 public Student(int StuNum, int Name, char Sex, int Age){//构造函数 this.StuNum = StuNum; this.Name = Name; this.Sex = Sex; this.Age = Age; } public int getStuNum() { //获得学号 retur

Person类编程题(C++程序设计)

class person{ private: int id; int age; char name[20]; float score[3]; public: person(int i,int a,char n[],float s[3]) { id=i; age=a; name=n; score=s;} //带参构造函数 person(){ id=0;age=0;name=null;score=null;}//缺省构造函数 void Display(){ cout<<"学号:"<定义一个学生类,有姓名、学号、性别、四门功课(math、english、C、Computer)和平

#include
usingnamespacestd;
classstudent
{
private:
char*Name;
intID;
charSex;
floatMath,English,C,Computer;
floatAverage;
public:
student();
voidaver();
voidshow();
student*next;
};
student::student()//信息输入
{
Name=newchar[20];
cin>>Name>>ID>>Sex>>Math>>English>>C>>Computer;
}
voidstudent::aver()//求平均值
{
Average=(Math+English+C+Computer)/4;
}
voidstudent::show()//信息输出
{
cout<<<""<}
student*createlist(intn)//建立链表
{
student*head,*p1=NULL,*p2=NULL;
head=newstudent;
if(head!=NULL)
{
head->next=NULL;
p1=head;
}
for(inti=0;i {
p2=newstudent;
if(p2!=NULL)
{
p1->next=p2;
p2->next=NULL;
p1=p2;
}
}
returnhead;
}
voidshowlist(student*head)//输出链表
{
student*p=head,*score=NULL;
while(p)
{
score=p;
p->aver();
p->show();
p=p->next;
deletescore;
}
}
intmain()
{
intn;
cout<<"PleaseInputtheNumberofStudents:"< cin>>n;
cout<<"Pleaseinput"<student*score;
score=createlist(n);
cout< showlist(score);
return0;
}

Java编程,定义一个学生类,输入3个学生数据,输出平均分和总分

public class Student { public static void main(String[] args) { StudentInfo zhangsan = new StudentInfo("张三", 1, 99); StudentInfo lisi = new StudentInfo("李四", 2, 203); StudentInfo wangwu = new StudentInfo("王五", 3, 357); StudentInfo xiaohong = new StudentInfo("小红", 4, 642); StudentInfo xiaozhang = new

设计一个学生类student,它具有的私有数据成员是:学号、姓名、数学、英语、计算机成绩;

你试试把第五行的分号去掉,看看能不能运行,把你的代码发过来(文本形式)我看看

标签:编程 编程语言 信息技术 英语 设计

大明白知识网 Copyright © 2020-2022 www.wangpan131.com. Some Rights Reserved. 京ICP备11019930号-18