求大神解答java基础题

2024-12-29 01:22:16
推荐回答(2个)
回答1:

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);
}
}

回答2:

5块帮你做了