Discuss / Python / 交作业啦

交作业啦

Topic source

a=input('height') b=input('weight') height=float(a) weight=float(b) BMI=weight/(height*height) if BMI>32: print('严重肥胖') elif BMI>28: print('肥胖') elif BMI>25: print('过重') elif BMI>18.5: print('正常') else: print('过轻')

老是忘记冒号。。


  • 1

Reply