3-4 计算长方形的周长和面积

来源:互联网 发布:js横陈烈感受静态的美 编辑:程序博客网 时间:2024/06/05 01:47

3-4 计算长方形的周长和面积

Time Limit: 1000MS Memory Limit: 65536KB
Submit Statistic

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,32the perimeter of r1 is:176the area of r1 is:1792the length and width of r2 is:56,32the perimeter of r2 is:176the area of r2 is:1792

Hint

 

输入 -7.0 -8.0

输出

the length and width of r1 is:0,0

the perimeter of r1 is:0

the area of r1 is:0

the length and width of r2 is:0,0

the perimeter of r2 is:0

the area of r2 is:0



#include<bits/stdc++.h>using namespace std;class point{public :point(double xx=0,double yy=0)///这个语句的意思是如果有输入的值的话,l就等于输入的值xx,w就等于输入的值yy。如果没有输入的{    l=xx;                      ///话就把l和w全都置为0(构造函数)    w=yy;}point(point &b)///复制的语句{    l=b.l;    w=b.w;}void display(){    cout<<"the length and width of r1 is:"<<l<<","<<w<<endl;    cout<<"the perimeter of r1 is:"<<(l+w)*2<<endl;    cout<<"the area of r1 is:"<<l*w<<endl;}void display1(){    cout<<"the length and width of r2 is:"<<l<<","<<w<<endl;    cout<<"the perimeter of r2 is:"<<(l+w)*2<<endl;    cout<<"the area of r2 is:"<<l*w<<endl;}private :double l,w;};int main(){    ///point p1,p2;当时做的时候我写上了这个语句,就提示我重定义了p1和p2,因为在下面我用了point p1(x,y),相当于定义了两遍  double x,y;  cin>>x>>y;  if(x<0||y<0)  {      x=0;      y=0;  }  point p1(x,y);  p1.display();  point p2(p1);  p2.display1();  return 0;}




原创粉丝点击