用Python设计计算长方形周长和面积
时间: 2024-04-28 11:01:56 浏览: 107
计算长方形的周长和面积
可以的,长方形的周长公式是2*(长+宽),面积公式是长*宽。以下是Python代码:
```python
length = float(input("请输入长方形的长度:"))
width = float(input("请输入长方形的宽度:"))
perimeter = 2 * (length + width)
area = length * width
print("长方形的周长为:", perimeter)
print("长方形的面积为:", area)
```
阅读全文