- UID
- 36846
- 帖子
- 6532
- 积分
- 23212
- 阅读权限
- 80
- 注册时间
- 2006-12-1
- 最后登录
- 2014-6-3
- 在线时间
- 4521 小时
|
定义一个学生成绩类CScore,描述学生成员的私有数据成员为学号(No)、姓名(Name[8])、数学(Math)、物理(Phi)、总分(Sum)。定义能输入学生成绩的公有成员函数Input()、能计算学生总分的成员函数Sum(),能显示学生成绩的成员函数Show().在main 函数里使用这个类
class CScore
{
int No;
char[8] Name;
int Math;
int Phi;
int sum;
public:
CSore(int no,char* name)
{
No = no;
strcopy(Name,name);
}
void input(int math,int phi)
{
this.Math = math;
this.Phi = phi;
}
void Sum()
{
this.sum = Math+Phi;
}
void Show()
{
cout<<"Sum = "<<sum<<endl;
}
}
void main()
{
CScore score(1,"sb");
score.input(88,88);
score.sum();
score.Show();
}
[ 本帖最后由 benbensyp 于 2008-4-17 11:48 编辑 ] |
|