C++定义一个Student类

定义一个Student类,在该类定义中包括:一个数据成员score(分数)及两个静态数据成员total(总分)和学生人数count;成员函数scoretotalcount... 定义一个Student类,在该类定义中包括:一个数据成员score(分数)及两个静态数据成员total(总分)和学生人数count;成员函数scoretotalcount(float s)用于设置分数、求总分和累计学生人数;静态成员函数sum用于返回总分;静态成员函数average用于求平均值。在main函数中,输入某班同学的成绩,并调用上述函数求全班学生的总分和平均分。
发送到邮箱1354149078@qq.com
展开
 我来答
wenku_a
推荐于2018-03-07 · TA获得超过125个赞
知道小有建树答主
回答量:118
采纳率:0%
帮助的人:112万
展开全部
又要交作业了吧?
#include <iostream.h>
class Student
{
private:
double score;
static double total;
static int count;
public:
Student(double s)
{
score=s;
total+=s;
count++;
}
static double sum()
{
return total;
}
static double average()
{
return total/count;
}
};
double Student::total=0.0;
int Student::count=0;
void main()
{int i,n;
double sco;
cout<<"Input the number of student";
cin>>n;
for(i=0;i<n;i++)
{
cout<<"Input the score:";
cin>>sco;
Student obj(sco);
}
cout<<"The total score is:"<<Student::sum()<<endl;
cout<<"The average score is:"<<Student::average()<<endl;
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式