- 1、本文档共13页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
.
4-8 定义一个 Dog 类,包含 age,weight 等属性,以及对这些属性操作的方法。实现并测试
这个类。
#include iostream
using namespace std;
class Dog
{
public:
void setAge(int a)
{
age=a;
}
int getAge()
{
return age;
}
void setWeight(float w)
{
weight=w;
}
float getWeight()
{
return weight;
}
private:
int age;
float weight;
};
void main()
{
Dog d;
d.setAge(3);
d.setWeight(30);
cout 小狗: d.getAge() 岁,重 d.getWeight() 斤。 endl;
}
4-9 设计并测试一个名为 Rectangle 的矩形类,其属性为矩形的左下角与右上角两个点的坐
标,根据坐标能计算矩形的面积。
#include iostream
#include math.h
using namespace std;
class Rectangle
.
.
{
public:
Rectangle(int xx1,int yy1,int xx2,int yy2)
{
x1=xx1;
y1=yy1;
x2=xx2;
y2=yy2;
}
float getArea()
{
return fabs(x2-x1)*fabs(y2-y1);
}
private:
int x1,y1;
int x2,y2;
};
void main()
{
Rectangle rec(0,0,10,20);
cout 矩形面积: rec.getArea()endl;
}
4-11 定义并实现一个矩形类,有长、宽两个属性,由成员函数计算矩形的面积。
#include iostream
using namespace std;
class Rectangle
{
public:
Rectangle(int l,int w)
{
length=l;
width=w;
}
float getArea()
{
return length*width;
}
private:
int length;
int width;
};
.
.
void main()
{
Rectangle rec(10,20);
cout 矩形面积: rec.getArea()endl;
}
4-13 定义一个 Circle 类,有数据成员 radius (半径),成员函数 getArea()
文档评论(0)