c++计算长方体周长和面积
3-4 计算长方形的周长和面积Time Limit: 1000MS Memory Limit: 65536KBSubmit StatisticProblem Description通过本题的练习可以掌握拷贝构造函数的定义和使用方法;设计一个长方形类Rect,计算长方形的周长与面积。类中有私有数据成员Length(长)、Width(宽),由具有缺省参数值的构造函数
·
3-4 计算长方形的周长和面积
Time Limit: 1000MS Memory Limit: 65536KB
Problem Description
通过本题的练习可以掌握拷贝构造函数的定义和使用方法;
设计一个长方形类Rect,计算长方形的周长与面积。类中有私有数据成员Length(长)、Width(宽),由具有缺省参数值的构造函数对其初始化,函数原型为:Rect(double Length=0, double Width=0); 再为其定义拷贝构造函数,形参为对象的常引用,函数原型为:Rect(const Rect &); 编写主函数,创建Rect对象r1初始化为长、宽数据,利用r1初始化另一个Rect对象r2,分别输出对象的长和宽、周长和面积。
要求: 创建对象 Rect r1(3.0,2.0),r2(r1);
Input
输入两个实数,中间用一个空格间隔;代表长方形的长和宽
Output
共有6行 ;
分别输出r1的长和宽; r1的周长; r1的面积;r2的长和宽; r2的周长; r2的面积;注意单词与单词之间用一个空格间隔
Example Input
56 32
Example Output
the length and width of r1 is:56,32 the perimeter of r1 is:176 the area of r1 is:1792 the length and width of r2 is:56,32 the perimeter of r2 is:176 the area of r2 is:1792
Author
注意点:题意给的是定义double类型的数据,所以如果用子函数进行计算的话,返回值即使知道是double类型的,也不知小数点后有几位,所以最好还是用cout这样直接进行输出,就不用考虑小数点的问题了(连叫了四发wrong answer后果断改了方法);
//用/*引出来的部分是第一次做的,四发wwrong anwser
#include<iostream>
#include<math.h>
using namespace std;
class Rect
{
private:
double length;//注意是double 类型
double width;
public:
Rect(double a=0, double b=0 )//注意题意,有默认参数0
{
length=a;
width=b;
}
Rect(const Rect &C)//定义拷贝函数
{
length=C.length;
width=C.width;
}
// int perimeter();
//int area();
void show1()
{
cout<<"the length and width of r1 is:"<<length<<","<<width<<endl;
}
void show2()
{
cout<<"the length and width of r2 is:"<<length<<","<<width<<endl;
}
void perimeter(int x)
{
cout<<"the perimeter of r"<<x<<" is:"<< 2*(length+width)<<endl;//注意输出时是r1和r2;
}
void area(int y)
{
cout<<"the area of r"<<y<<" is:"<<(length*width)<<endl;
}
};
//计算周长
/*int Rect::perimeter()
{
return 2*(length+width);
}
//计算面积
int Rect::area()
{
return (length*width);
}*/
int main()
{
double l,w;
cin>>l>>w;
if(l<0)//如果长或宽小于零,则置为零
{
l=0;
}
if(w<0)
{
w=0;
}
Rect A(l,w);
A.show1();
A.perimeter(1);
A.area(1);
/* cout<<"the perimeter of r1 is:"<<A.perimeter()<<endl;
cout<<"the area of r1 is:"<<A.area()<<endl;*/
Rect C=A;//把A拷贝给C的关键语句
C.show2();
C.perimeter(2);
C.area(2);
/*cout<<"the perimeter of r2 is:"<<C.perimeter()<<endl;
cout<<"the area of r2 is:"<<C.area()<<endl;*/
return 0;
}
DAMO开发者矩阵,由阿里巴巴达摩院和中国互联网协会联合发起,致力于探讨最前沿的技术趋势与应用成果,搭建高质量的交流与分享平台,推动技术创新与产业应用链接,围绕“人工智能与新型计算”构建开放共享的开发者生态。
更多推荐



所有评论(0)