标签:space inf ret 宽度 bubuko tle 返回 color iostream
class Rectangle {
public:
void setLength(int l);//设置矩形的长度
void setWidth(int w); //设置矩形的宽度
int getArea(); //计算并返回矩形的面积
private:
int length, width; //矩形的长度和宽度
};
#include <iostream>
using namespace std;
class Rectangle {
public:
void setLength(int l);//设置矩形的长度
void setWidth(int w); //设置矩形的宽度
int getArea(); //计算并返回矩形的面积
private:
int length, width; //矩形的长度和宽度
};
int main()
{
Rectangle r;
int len, w;
cin >> len >> w;
r.setLength(len);
r.setWidth(w);
cout << r.getArea() << "\n";
return 0;
}
/* 你的代码将嵌在这里 */
代码如下:
void Rectangle::setLength(int l)
{
length=l;
}
void Rectangle::setWidth(int w)
{
width=w;
}
int Rectangle::getArea()
{
return length*width;
}
标签:space inf ret 宽度 bubuko tle 返回 color iostream
原文地址:https://www.cnblogs.com/Daylight-Deng/p/10122142.html