{
private int _height;
private int _width;
public void SetHeight(int h)
{
_height = h;
}
public int GetHeight()
{
return _height;
}
public void SetWidth(int w)
{
_width = w;
}
public int GetWidth()
{
return _width;
}
public int Area()
{
return _width * _height;
}
public int Surface()
{
return 2 * (_width + _height);
}
}
}
+ نوشته شده در سه شنبه شانزدهم آبان ۱۳۹۶ساعت 23:48  توسط فاطمه عبدالهی95125464 |
برچسب:
نویسنده: هلیا فلاح