Discuss / Python / 交作业

交作业

Topic source

height=float(input('enter your height:'))

weight=float(input('enter your weight:'))

H=height

W=weight

BMI=W/(H**2)

if BMI<18.5:

   print('过轻')

elif BMI<25:

     print('正常')

elif BMI<28:

     print('过重')

elif BMI<32:

     print('肥胖')

else:

    print('严重肥胖')

height=float(input('enter your height:'))

weight=float(input('enter your weight:'))

H=height

W=weight

BMI=W/(H**2)

if BMI<18.5:

   print('你的BMI:%.1f,过轻'%BMI)

elif BMI<25:

     print('你的BMI:%.1f,正常'%BMI)

elif BMI<28:

     print('你的BMI:%.1f,过重'%BMI)

elif BMI<32:

     print('你的BMI:%.1f,肥胖'%BMI)

else:

    print('你的BMI:%.1f,严重肥胖'%BMI)


  • 1

Reply