C++第三天

定义并实现一个矩形类,有长和宽两个属性,由成员函数计算矩形的面积。

#include <iostream>
using namespace std;

void Rectangle::setLength(int l)
{
length=l;
}
void Rectangle::setWidth(int w)
{
width=w;
}
int Rectangle::getArea()
{
return length*width;
}

int main()
{
Rectangle r;
int len, w;
cin >> len >> w;
r.setLength(len);
r.setWidth(w);
cout << r.getArea() << "\n";

return 0;
}

 

posted @ 2023-04-12 21:10  涨涨涨张  阅读(14)  评论(0编辑  收藏  举报