定义一个矩形类Rect,并用来求该矩形的周长和面积 定义实例变量length和width,表示矩形的长和宽 定义一个area()方法,返回矩形的面积 定义一个circumference()方法,返回矩形的周长 补充代码,创建对象,计算长为4,宽为6的矩形的面积和周长
时间: 2024-03-11 10:21:23 浏览: 93
java代码-编写一个类,类名为Rectangle(矩形),它有两个整型的变量width(宽)和height(高);有一个方法area(),没有参数,返回类型为double,功能是求矩形的面积;还有另一个方法为perimeter()没有参数,返回类型为double,功能是求矩形的周长,
以下是代码实现:
```python
class Rect:
def __init__(self, length, width):
self.length = length
self.width = width
def area(self):
return self.length * self.width
def circumference(self):
return 2 * (self.length + self.width)
# 创建对象
rect = Rect(4, 6)
# 计算面积和周长
print("矩形的面积为:", rect.area())
print("矩形的周长为:", rect.circumference())
```
输出结果为:
```
矩形的面积为: 24
矩形的周长为: 20
```
阅读全文