c语言sscanf函数的用法是什么
253
2022-08-28
YTU 2641: 填空题:静态成员---计算学生个数
2641: 填空题:静态成员---计算学生个数
时间限制: 1 Sec 内存限制: 128 MB
提交: 267
解决: 206
题目描述
在下面的程序段基础上完成设计,只提交begin到end部分的代码
#include
//将程序需要的成份写下来,只提交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<标签:函数
发表评论
暂时没有评论,来抢沙发吧~