Discuss / Python / 交作业~

交作业~

Topic source

悲剧的70

#1 Created at ... [Delete] [Delete and Lock User]

coding:utf-8

''' BMI公式(体重除以身高的平方)计算BMI指数,并根据BMI指数:

低于18.5:过轻 18.5-25:正常 25-28:过重 28-32:肥胖 高于32:严重肥胖 用if-elif判断并打印结果 ''' print('欢迎使用BMI指数计算\n\n') shengao=input('请输入你的身高:',) tizhong=input('请输入你的体重:',) sg=float(shengao) tz=float(tizhong) BMI=tz/(sg*sg)

if BMI<18.5: print('过轻') elif BMI<25: print('正常') elif BMI<28: print('过重') elif BMI<32: print('肥胖') else: print('严重肥胖')


  • 1

Reply