java面向对象程序设计 1.按以下要求编写程序(1) 创建一个Rectangle类,添加width和height两个成员变量(2).

java面向对象程序设计1.按以下要求编写程序(1)创建一个Rectangle类,添加width和height两个成员变量(2)在Rectangle中添加两种方法分别计算... java面向对象程序设计1.按以下要求编写程序(1) 创建一个Rectangle类,添加width和height两个成员变量(2) 在Rectangle中添加两种方法分别计算矩形的周长和面积(3) 编程利用Rectangle输出一个矩形的周长和面积 展开
 我来答
yinfengnong
2019-06-23 · TA获得超过5619个赞
知道大有可为答主
回答量:2344
采纳率:89%
帮助的人:2289万
展开全部

class Rectangle {

private double width;

private double height;

public Rectangle(double width, double height) {

this.width = width;

this.height = height;

}

public double getWidth() {

return width;

}

public void setWidth(double width) {

this.width = width;

}

public double getHeight() {

return height;

}

public void setHeight(double height) {

this.height = height;

}

public double getArea() {

return width * height;

}

public double getPerimeter() {

return (width + height) * 2;

}

}

public class App {

public static void main(String[] args) {

Rectangle rect = new Rectangle(50, 20);

System.out.println("矩形,面积:" + rect.getArea() + ",周长:" + rect.getPerimeter());

}

}

流浪乐猫
2020-11-01 · TA获得超过510个赞
知道小有建树答主
回答量:282
采纳率:83%
帮助的人:73.3万
展开全部
public class Rectangle {
float width, height;
public Rectangle(float width, float height) {
this.width = width;
this.height = height;
}
public float getLength______{
return (this.width + this.height) * B;
}
public float getArea______{
return this.width * this.height;
}
public static void main(String [] args) {
Rectangle rect = new Rectangle(A0, B0);
System.out.println("周长是:" + rect.getLength______);
System.out.println("面积是:" + rect.getArea______);
}
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式