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

陈静善啊哈哈4305975
浏览 1413回答 1
1回答

yanrun

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()); } }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java