Discuss / Python / 老是显示执行超时,只能用pycharm

老是显示执行超时,只能用pycharm

Topic source

吼kk

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

height = float(input('height=:')) weight = float(input('weight=:')) BMI = weight/(height*height)

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


  • 1

Reply