编辑代码

public class Rectangle {
	int width;
	int height;
}
class area extends Rectangle{
	public area(double ai){
		System.out.println((width+width)*height/2+"");
	}
}
class perimeter extends Rectangle{
	public perimeter(double an){
		System.out.println((width+height)*2+"");
	}
}