好文档 - 专业文书写作范文服务资料分享网站

实验七静态成员与友元

天下 分享 时间: 加入收藏 我要投稿 点赞

max = C.balance; strcpy(str,\农业银行\ } } cout << \存款最多的银行是: \ }

int main() { CBank X; BBank Y; GBank Z; X.getbalance(); Y.getbalance(); Z.getbalance(); total(X,Y,Z); max(X,Y,Z); system(\ return 0; }

2. 完成实验项目

定义一个Student类,在该类中包括一个数据成员score(分数),两个静态数据成员total(总分)和学生人数count;成员函数score_total_count(float s)用于设置分数、求总分和累计学生人数;静态成员函数sum()用于返回总分;静态成员函数average()用于求平均值。在main()函数中,输入某班同学的成绩,并调用上述函数求全班学生的总分和平均分。 四、课后作业

1. 声明Book与Ruler两个类,二者都有weight属性,定义二者的友元函数total_weight(),计算二者的重量和。

2. 撰写实验报告。

#include #include using namespace std; class Book; class Ruler { private:

double weight; public:

Ruler(double wg) { this->weight = wg; }

Ruler(Ruler& tp) {

this->weight = tp.weight; }

double getWeight() { return weight; }

~Ruler() { }

void show() {

cout << \ << endl; cout << \ << weight << endl; } };

class Book { private:

double weight; public:

Book(double wg) { this->weight = wg; }

Book (Book& tp) {

this->weight = tp.weight; }

double getWeight() { return weight; } ~Book() { }

friend double totalWeight(Book& a, Ruler& b); void show() {

cout << \ << endl; cout << \ << weight << endl; } };

double totalWeight(Book& a, Ruler& b) { return a.getWeight() + b.getWeight(); }

int main() { Book a(512.0); Ruler b(666.0); a.show(); b.show();

cout << \ << endl; cout << totalWeight(a, b); return 0; }

实验七静态成员与友元

max=C.balance;strcpy(str,\农业银行\}}cout<<\存款最多的银行是:\}intmain(){CBankX;BBankY;GBankZ;X.getbalance();Y.getbalance();Z.getbalance();total(X,Y,Z);
推荐度:
点击下载文档文档为doc格式
9ot9v3u61a4vbt01gdv99bpag891bi0044m
领取福利

微信扫码领取福利

微信扫码分享