1.定义一个立方体类Cube,该类的数据成员为立方体的长、宽、高,该类的成员方法为计算输出立方体的周长、表面积和体积,创建该类的实例对象mycube,其长、宽、高为10以内的随机正整数,求其周长、表面积和体积。
时间: 2023-07-10 13:41:21 浏览: 157
创建类MyMath,计算圆的周长、面积和球的表面积、体积,结果保留两位小数。若输入的是非数字,则输出:请输入数字!提示:要引入math包。
5星 · 资源好评率100%
好的,以下是代码实现:
```python
import random
class Cube:
def __init__(self, length, width, height):
self.length = length
self.width = width
self.height = height
def perimeter(self):
return 4 * (self.length + self.width + self.height)
def surface_area(self):
return 2 * (self.length*self.width + self.width*self.height + self.height*self.length)
def volume(self):
return self.length * self.width * self.height
# 生成随机正整数
length = random.randint(1, 10)
width = random.randint(1, 10)
height = random.randint(1, 10)
# 创建 Cube 类的实例对象 mycube
mycube = Cube(length, width, height)
# 输出周长、表面积和体积
print("周长为:", mycube.perimeter())
print("表面积为:", mycube.surface_area())
print("体积为:", mycube.volume())
```
运行结果每次都会不同,因为长、宽、高是随机生成的。
阅读全文