如何定义一个表示矩形的类,可以计算矩形的面积?菜鸟求助。。。
如何定义一个表示矩形的类,可以计算矩形的面积?
作者: gyw930 发布时间: 2011-06-15
顶起。。。。。
作者: gyw930 发布时间: 2011-06-15
顶起。。。
作者: gyw930 发布时间: 2011-06-15
class rectangle
{
private float Width{get;set;}
private float Height{get;set;}
public float GetArea(float width,float height)
{
return width*height;
}
}
{
private float Width{get;set;}
private float Height{get;set;}
public float GetArea(float width,float height)
{
return width*height;
}
}
作者: wgl275336544 发布时间: 2011-06-15