3 4 計算長方形的周長和面積

2021-08-13 04:58:48 字數 1366 閱讀 5711

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

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 

using

namespace

std;

class rect

rect(const rect &a)//複製建構函式

void display1();

void display2();

};void rect::display1()

rect r1(a, b);

rect r2(r1);//當用類的乙個物件去初始化該類的另乙個物件時,會複製建構函式

r1.display1();

r2.display2();

return

0;}

3 4 計算長方形的周長和面積

time limit 1000ms memory limit 65536k 通過本題的練習可以掌握拷貝建構函式的定義和使用方法 設計乙個長方形類rect,計算長方形的周長與面積。類中有私有資料成員length 長 width 寬 由具有預設引數值的建構函式對其初始化,函式原型為 rect doubl...

3 4 計算長方形的周長和面積

time limit 1000ms memory limit 65536k 通過本題的練習可以掌握拷貝建構函式的定義和使用方法 設計乙個長方形類rect,計算長方形的周長與面積。類中有私有資料成員length 長 width 寬 由具有預設引數值的建構函式對其初始化,函式原型為 rect doubl...

3 4 計算長方形的周長和面積

time limit 1000ms memory limit 65536kb submit statistic problem description 通過本題的練習可以掌握拷貝建構函式的定義和使用方法 設計乙個長方形類rect,計算長方形的周長與面積。類中有私有資料成員length 長 width...