1. 定义一个矩形类Crectangle,要求具有以下成
员:属性l和s,表示矩形的长和宽;方法
move()实现矩形的移动;方法SetSize()
设置矩形的大小;方法Location()返回矩形
左上角的坐标值;方法Area()计算矩形的面积。
1. 定义一个矩形类Crectangle,要求具有以下成
员:属性l和s,表示矩形的长和宽;方法
move()实现矩形的移动;方法SetSize()
设置矩形的大小;方法Location()返回矩形
左上角的坐标值;方法Area()计算矩形的面积。
class Circle
{
private float a;
private float b;
public float area;
public void setA(float a)
{
this.a=a;
}
public float getA()
{
return this.a;
}
public void setArea(float b)
{
this.b=b;
}
public float getB()
{
return this.b;
}
public void into(float a)
{
area=a*a;
System.out.println("这是一个正方形...面积为: "+area);
}
public void into(float a,float b)
{
area=a*b;
System.out.println("这是一个正方形...面积为: "+area);
}
}
public class Java
{
public static void main(String args[])
{
Circle c=new Circle();
c.into(2);
c.into(2,3);
}
}
不知道是不是你要的!