C++编程练习-计算矩形面积

Description
设计一个程序,定义一个矩形类 Rectangle,它有长 length 和宽 width 两个属性,有成员函数计算矩形的面积。并在 main()函数中建立矩形类 Rectangle 的对象,显示该矩形对象的面积。结果正确才有输出哦(考虑一下出出错的情况,使用浮点型)
Sample Input
6 4.2
Sample Output
25.2
参考代码
#include using namespace std; class Rectangle{ float length; float width; float area; bool b; public: Rectangle(float len,float wid); float getarea(); void print(); }; Rectangle::Rectangle(float len,float wid){ length = len; width = wid; b = true; if(len <= 0 || wid <= 0) b = false; } float Rectangle::getarea(){ return length * width; } void Rectangle::print(){ float f = getarea(); if(b) cout<>a>>b; Rectangle r(a,b); r.print(); return 0; }

你可能感兴趣的:(C++编程练习-计算矩形面积)