class Rectangel{
float length=1;
float width=1;
void Rectangel(){ //构造方法
}
void cir(float length,float width){ //计算周长方法
System.out.println((length*2)+(width*2));
}
void area(float length,float width){ // 计算面积方法
System.out.println(length*width);
}
}
public class juxing {
public static void main(String[] args){
Rectangel count=new Rectangel();
count.cir(3,8);
count.area(3, 8);
}
}
5块帮你做了