利用java设计当宽为6,高为5时,输出该矩形的宽、高以及面积值的代码
时间: 2024-10-25 10:09:20 浏览: 21
在Java中,你可以创建一个简单的类`Rectangle`来表示矩形,并包含宽度和高度属性以及计算面积的方法。以下是一个例子:
```java
public class Rectangle {
private int width;
private int height;
// 构造函数
public Rectangle(int width, int height) {
this.width = width;
this.height = height;
}
// 获取宽度和高度的方法
public int getWidth() {
return width;
}
public int getHeight() {
return height;
}
// 计算面积的方法
public int getArea() {
return width * height;
}
// 主函数用于演示
public static void main(String[] args) {
Rectangle rectangle = new Rectangle(6, 5);
System.out.println("宽度: " + rectangle.getWidth());
System.out.println("高度: " + rectangle.getHeight());
System.out.println("面积: " + rectangle.getArea());
}
}
```
在这个代码中,我们首先创建了一个`Rectangle`类,然后实例化一个矩形,其宽度为6,高度为5。接着我们在主函数中打印出矩形的宽、高以及计算得到的面积。
阅读全文