求大神解答java基础题
2个回答
展开全部
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);
}
}
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块帮你做了
追问
图呢 亲
追答
免费给你写一个,自己学下
public class Rectangle {
private double length = 1;
private double width = 1;
public Rectangle() {
}
public Rectangle(int length, int width) {
this.length = length;
this.width = width;
}
public double perimeter() {
return 2 * (width + length);
}
public double area() {
return length * width;
}
public double getLength() {
return length;
}
public void setLength(double length) {
this.length = length;
}
public double getWidth() {
return width;
}
public void setWidth(double width) {
this.width = width;
}
public static void main(String[] args) {
Rectangle rectangle = new Rectangle(3, 8);
double perimeter = rectangle.perimeter();
double area = rectangle.area();
System.out.println("矩形的周长是:" + perimeter);
System.out.println("矩形的面积是:" + area);
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询