自定义方法,求取长方形的面积,要求长宽输入赋值。
时间: 2024-09-25 11:13:44 浏览: 59
juxing.rar_jsp求长方形
要使用Java编写一个自定义方法来求取长方形的面积,你可以创建一个名为`Rectangle`的类,包含宽度(width)和高度(height)属性以及一个计算面积的方法。这里是简单的示例:
```java
public class Rectangle {
private double width;
private double height;
// 构造方法用于初始化矩形的尺寸
public Rectangle(double width, double height) {
this.width = width;
this.height = height;
}
// 定义计算面积的方法
public double getArea() {
return width * height;
}
public static void main(String[] args) {
// 创建一个新的矩形实例并设置其宽度和高度
Rectangle rectangle = new Rectangle(5.0, 10.0);
// 调用getArea()方法获取面积
double area = rectangle.getArea();
System.out.println("The area of the rectangle is: " + area);
}
}
```
对于Python,你可以创建一个函数接受长和宽作为参数来计算面积。这里是一个示例:
```python
def calculate_rectangle_area(length, width):
"""
Calculate the area of a rectangle using its length and width.
"""
area = length * width
return area
# 在main程序中调用这个函数
length = 5.0
width = 10.0
area = calculate_rectangle_area(length, width)
print(f"The area of the rectangle is: {area}")
```
阅读全文