Auto commit

上级 df352508
print('欢迎来到 InsCode')
\ No newline at end of file
height = eval(input('请输入你的身高'))
if height > 3:
height = 0
height = eval(input('请注意身高的单位是米!请重新输入身高!'))
weight = eval(input('请输入您的体重'))
BMI = weight / (height * height)
if BMI > 28:
print('您的BMI指数为', BMI)
print('您属于肥胖型身材!管住嘴迈开腿才会更健康哦!')
elif BMI > 24:
print('您的BMI指数为', BMI)
print('您的体重过重了!要注意控制体重哦!')
elif BMI > 18.5:
print('您的BMI指数为', BMI)
print('您属于标准身材!继续保持哦!')
else:
print('您的BMI指数为', BMI)
print('您太瘦啦!健康美才最美!')
weight =eval(input('请输入您的体重'))
BMI = weight / (height * height)
if BMI > 28:
print('您的BMI指数为', BMI)
print('您属于肥胖型身材!管住嘴迈开腿才会更健康哦!')
elif BMI > 24:
print('您的BMI指数为', BMI)
print('您的体重过重了!要注意控制体重哦!')
elif BMI > 18.5:
print('您的BMI指数为', BMI)
print('您属于标准身材!继续保持哦!')
else:
print('您的BMI指数为', BMI)
print('您太瘦啦!健康美才最美!')
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册