码迷,mamicode.com
首页 > 编程语言 > 详细

Python3实现计算BMI指数,跟我一起来计算你的BMI吧

时间:2017-04-14 13:30:36      阅读:719      评论:0      收藏:0      [点我收藏+]

标签:==   name   size   color   style   weight   inpu   family   程序   

废话不多说,直接上程序哈:
    name=input(‘Name:‘)
    height=input(‘Height(m):‘)
    weight=input(‘Weight(kg):‘)
    BMI=float(float(weight)/(float(height)**2))
    print(您的BMI指数为:‘,BIM)
    if BMI <18.5:
    print(你太轻了!‘)
    elif BMI<=25:
    print(标准体重哦哦!‘)
    elif BMI<=32:
    print(您有点微胖哦哦!‘)
    else:
    print(您太胖了,该减肥了‘)
废话不多说,改进版继续上程序哈:
  def bmi():
  name=input(‘Name:‘)
  height=input(‘Height(m):‘)
  weight=input(‘Weight(kg):‘)
  BIM=float(float(weight)/(float(height)**2))
  print(您的BIM指数为:‘,BIM)
  if BIM <18.5:
  print(你太轻了!‘)
  elif BIM<=25:
  print(标准体重哦哦!‘)
  elif BIM<=32:
  print(您有点微胖哦哦!‘)
  else:
  print(您太胖了,该减肥了‘)
  bmi()
  for i in range(10):
  choose =input(您是否愿意继续计算BMI(y/n)‘)
  if choose==‘y‘:
  bmi()
  else:
  break
 
 

Python3实现计算BMI指数,跟我一起来计算你的BMI吧

标签:==   name   size   color   style   weight   inpu   family   程序   

原文地址:http://www.cnblogs.com/Michelle-Yang/p/6708296.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!