设计一个student类,类中包括: (1)一个数据成员score(分数)及两个静态数据
设计一个student类,类中包括:(1)一个数据成员score(分数)及两个静态数据成员total(总分)和count(学生人数)。(2)成员函数scoretotalc...
设计一个student类,类中包括:
(1)一个数据成员score(分数)及两个静态数据成员total(总分)和count(学生人数)。
(2)成员函数scoretotalcount(double s)用于设置分数、求总分和累计学生人数。
(3)静态成员函数sum()用于返回总分;静态成员函数average()用于求平均值。
(4)在main()函数中,输入5个学生的成绩,调用上述函数计算总分和与平均分。 展开
(1)一个数据成员score(分数)及两个静态数据成员total(总分)和count(学生人数)。
(2)成员函数scoretotalcount(double s)用于设置分数、求总分和累计学生人数。
(3)静态成员函数sum()用于返回总分;静态成员函数average()用于求平均值。
(4)在main()函数中,输入5个学生的成绩,调用上述函数计算总分和与平均分。 展开
展开全部
#include <iostream>
using namespace std;
class student
{
public:
void scoretotalcount( double s )
{
score = s;
total = total + score;
count++;
}
static double sum()
{
return total;
}
static double average()
{
return total / count;
}
private:
double score;
static double total;
static double count;
};
double student::total=0;
double student::count=0;
int main()
{
int i,n; double s;
cout << "请输入学生人数:";
cin >> n;
student stu;
for( i=1; i<=n; i++ )
{
cout << "请输入第" << i << "个学生的分数:";
cin >> s;
stu.scoretotalcount( s );}
cout << "总分:" << student::sum() << endl;
cout << "平均分:" << student::average() << endl;
}
using namespace std;
class student
{
public:
void scoretotalcount( double s )
{
score = s;
total = total + score;
count++;
}
static double sum()
{
return total;
}
static double average()
{
return total / count;
}
private:
double score;
static double total;
static double count;
};
double student::total=0;
double student::count=0;
int main()
{
int i,n; double s;
cout << "请输入学生人数:";
cin >> n;
student stu;
for( i=1; i<=n; i++ )
{
cout << "请输入第" << i << "个学生的分数:";
cin >> s;
stu.scoretotalcount( s );}
cout << "总分:" << student::sum() << endl;
cout << "平均分:" << student::average() << endl;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询