为了账号安全,请及时绑定邮箱和手机立即绑定

怎样创建矩形类方法来计算周长和面积?

怎样创建矩形类方法来计算周长和面积?

陈静善啊哈哈4305975 2016-11-11 09:44:02
查看完整描述

1 回答

?
yanrun

TA贡献317条经验 获得超240个赞

public class Rectangle {

	private double length;
	private double width;
	
	public Rectangle(double length, double width) {
		this.length = length;
		this.width = width;
	}
	
	public double getArea() {
		return this.length * this.width;
	}
	
	public double getPerimeter() {
		return (this.length + this.width) * 2;
	}
	
	public static void main(String[] args) {
		Rectangle r = new Rectangle(4, 3);
		System.out.println("面积为:" + r.getArea());
		System.out.println("周长为:" + r.getPerimeter());
	}
}


查看完整回答
1 反对 回复 2016-11-11
  • 1 回答
  • 2 关注
  • 1412 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信