Java定义一个Rectangle类

(1)定义一个Rectangle类,添加两个属性width、height,提供相应的构造方法及成员变量的设置器和访问器。(2)在Rectangle中添加两个方法分别计算矩... (1)定义一个Rectangle类,添加两个属性width、height,提供相应的构造方法及成员变量的设置器和访问器。
(2)在Rectangle中添加两个方法分别计算矩形的周长和面积。
(3)定义测试类,创建Rectangle对象,输出一个矩形的周长和面积。
展开
 我来答
Rankabc
2014-10-14 · TA获得超过3561个赞
知道大有可为答主
回答量:3705
采纳率:59%
帮助的人:1059万
展开全部
class Rectangle {
private double width;
private double height;

public Rectangle(double width, double height) {
this.width = width;
this.height = height;
}

public double getC() {
return (width + height) * 2;
}

public double getS() {
return width * 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 class Test {
public static void main(String[] args) {
Rectangle rect = new Rectangle(4, 5);
System.out.println("周长=" + rect.getC() + "\n面积=" + rect.getS());
}
}
骑真拱浩丽
2020-04-12 · TA获得超过3557个赞
知道大有可为答主
回答量:3120
采纳率:25%
帮助的人:154万
展开全部
12345678910111213141516171819202122232425262728293031323334353637383940class Rectangle { private double width; private double height; public Rectangle(double width, double height) { this.width = width; this.height = height; } public double getC() { return (width + height) * 2; } public double getS() { return width * 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 class Test { public static void main(String[] args) { Rectangle rect = new Rectangle(4, 5); System.out.println("周长=" + rect.getC() + "\n面积=" + rect.getS()); }}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式