java创建Rectangle类,添加属性width、height; 在Rectangle类中添加两种方法计算矩形的周长和面积; 编程利用Rectangle输出一个矩形的周长和面积。
时间: 2024-03-08 13:46:58 浏览: 102
好的,以下是Java代码示例:
```java
public class Rectangle {
private int width;
private int height;
public Rectangle(int width, int height) {
this.width = width;
this.height = height;
}
public int getArea() {
return width * height;
}
public int getPerimeter() {
return 2 * (width + height);
}
public static void main(String[] args) {
// 创建一个Rectangle对象
Rectangle rect = new Rectangle(5, 3);
// 计算矩形的面积和周长
int area = rect.getArea();
int perimeter = rect.getPerimeter();
// 输出结果
System.out.println("矩形的面积为:" + area);
System.out.println("矩形的周长为:" + perimeter);
}
}
```
在上面的代码中,我们定义了一个Rectangle类,它有两个属性width和height,以及两个方法getArea()和getPerimeter(),用于计算矩形的面积和周长。我们创建了一个新的Rectangle对象,然后调用它的方法来计算面积和周长,并将结果输出到控制台上。
阅读全文