c++基础练习题四

1.编程实现以下功能:
矩形有长a和宽b,现有2个矩形,要求实现矩形相加时可以得到一个新的矩形,
它的长为两个矩形的长a相加,宽为两个矩形的宽b和b相加
要求定义类实现,自己设计,可以输出新矩形的长和宽,矩形相加要求使用运算符+重载实现

#include<iostream>
#include<string>
#include<algorithm>
#include<ctime>
using namespace std;
# if 0
class juxing {
private:
	int a;
	int b;
public:
	juxing(int a=0,int b=0) {
		this->a = a;
		this->b = b;
	}
	void show() {
		cout << "面积为:" << a * b << endl;
	}

	juxing operator+(juxing &c) {
		juxing d;
		d.a=this->a + c.a;
		d.b = this->b + c.b;
		return d;
	}
	juxing add(juxing &c) {
		juxing d;
		d.a = this->a + c.a;
		d.b = this->b + c.b;
		return d;
	}
};
int main() {
	juxing j1(3, 4);
	juxing j2(4, 5);
	juxing d;
	d = j1 + j2;
	d.show();

	juxing d2;
	d2=j1.add(j2);
	d2.show();
}

#endif

2.编写2个函数模板,分别实现以下操作
输出一维数组元素
对一维数组降序排序
主函数中用double , int 种不同类型的数据进行测试

#include<iostream>
#include<string>
#include<algorithm>
#include<ctime>
using namespace std;
template<class T>
void mysort(T a[],int n) {
	for (int i = 0; i < n; i++) {
		for (int j = 0; j < n - i - 1; j++) {
			if (a[j] < a[j + 1]) {
				swap(a[j+1], a[j]);
			}
		}
	}
	for (int i = 0; i < n; i++) {
		cout << a[i] << " ";
	}
	cout <<endl;
}

int main() {
	int a[5] = { 11,23,31,24,5 };
	double b[5] = { 3.4,7.6,9.1,6.3,2.1 };
	mysort(a, 5);
	mysort(b, 5);
}

3.定义一个基类图形类,有一个求面的的area函数,该函数为纯虚函数
定义一个派生类圆类,根据需要添加自己的成员,需要有一个area成员函数用来 求面积并输出
定义一个派生类矩形类,根据需要添加自己的成员,需要一个area成员函数用来 求面积并输出
实例化圆类和矩形类两个对象
定义一个基类的指针
将基类指针分别指向派生类的对象,通过指针调用各自的area成员函数,实现多 态

#include<iostream>
#include<string>
#include<algorithm>
#include<ctime>
using namespace std;
class part {
public:
	virtual void area() = 0;
	/*virtual void area() {
		cout << "求图形的面积!" << endl;
	}*/
};

class circle:public part {
private:
	double r;
public:
	circle(double r) {
		this->r = r;
	}
	void area() {
		double a;
		double pi = 3.14;
		a = pi * pow(r, 2);
		cout << "圆面积为:"<<a << endl;
	}


};

class rectangle:public part {
private:
	int width;
	int height;
public:
	rectangle(int a, int b) {
		width = a;
		height = b;
	}

	void area() {
		cout <<"矩形面积为:"<< width * height << endl;
	}

};

int main(){
	part *p;
	circle c(4);
	rectangle r(3, 4);
	p = &c;
	p->area();
	p = &r;
	p->area();

}

4.猜数字游戏:随机给定一个数(要求在1-10之间),然后进行猜数字,如果大了提示大了,小了则提示小了,等于则提示猜测成功
要求使用类实现,自己设计

#include<iostream>
#include<string>
#include<algorithm>
#include<ctime>
using namespace std;
class fun {
	int num;
	int r;
public:
	fun(int a, int b) {
		num = a;
		r = b;
	}
	int print() {
			if (r > num) {
				cout << "大了" << endl;
			}
			else if (r < num) {
				cout << "小了" << endl;
			}
			else if (r == num) {
				cout << "猜测成功!" << endl;
				return 1;
			}
		
	}

};
int main() {
	srand(time(0));
	int t, q;
	int z;
	//1-10的随机数
	t = rand() % 10+1;
	cout << "猜数字游戏开始啦!" << endl;
	for (;;) {
		cout << "请输入要猜的数字:";
		cin >> q;
		fun f(t, q);
		z = f.print();
		if (z == 1) {
			break;
		}
	}
}






  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小飞龙程序员

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值