输入身高和体重,将其转换为米和斤,然后计算体指数并输出结果。 示例代码: height = float(input("请输入身高(厘米):")) / 100 weight = float(input("请输入体重(公斤):")) print("身高:{:.2f}米".format(height)) print("体重:{:.2f}斤".format(weight * 2)) t = weight / (height * height) print("体指数:{:.2f}".format(t))
时间: 2024-01-21 15:20:08 浏览: 157
输入身高和体重可以测出身体指数的小程序
4星 · 用户满意度95%
好的,这是一个简单的身高体重转换和计算BMI的Python代码:
```
height = float(input("请输入身高(厘米):")) / 100
weight = float(input("请输入体重(公斤):")) * 2
print("身高:{:.2f}米".format(height))
print("体重:{:.2f}斤".format(weight))
bmi = weight / (height ** 2)
print("体指数:{:.2f}".format(bmi))
```
输入身高和体重后,程序会先将身高转换为米,体重转换为斤,然后输出转换后的结果。接着,程序用转换后的身高体重计算BMI,并输出结果。
阅读全文