YTU 2641: 填空题:静态成员---计算学生个数

网友投稿 253 2022-08-28

YTU 2641: 填空题:静态成员---计算学生个数

2641: 填空题:静态成员---计算学生个数

时间限制: 1 Sec   内存限制: 128 MB

提交: 267

解决: 206

题目描述

在下面的程序段基础上完成设计,只提交begin到end部分的代码

#include #include using namespace std; class student { private: string name; //学生姓名 int age; //学生年龄 int score; //学生成绩 static int count; //记录学生对象个数 static int sum; //记录所有学生的总成绩 public: student(string n,int a,int s); //构造函数 static int get_count(); //静态成员函数,获取count的值 static int get_sum(); //静态成员函数,获取sum的值 };

//将程序需要的成份写下来,只提交begin到end部分的代码 //******************** begin ******************** int student::count=0; _____(1)_______; ________(2)___________ { name=n; age=a; score=s; count++; sum+=s; } int student::get_count() { ______(3)_______; } int student::get_sum() { ______(4)______; } //********************* end ******************** int main( ) { string name; int age; int score; int n; cin>>n; //输入学生对象个数 while(n--) { cin>>name>>age>>score; new student(name,age,score); } cout<<"the count of student objects="; cout<

标签:函数
上一篇:YTU 2635: P4 游戏中的Human角色
下一篇:营销人的三大认知误区!(营销八大误区)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~