BMI(肥胖指数), which is equal to one’s weight in kilograms divided by the square of one’s height in meters as formularized by the following:
BMI=Weight in Kilograms / (Height in centimeters × Height in centimeters) × 10,000
The following is the table for BMI and weight:
below 18.5: Underweight
18.5 to 24.9: Healthy weight
25.0 to 29.9: Overweight
30 or higher: Obese
假设你身高17米,体重150公斤,那么你的肥胖指数是
BMI=Weight in Kilograms / (Height in centimeters × Height in centimeters) × 10,000
The following is the table for BMI and weight:
below 18.5: Underweight
18.5 to 24.9: Healthy weight
25.0 to 29.9: Overweight
30 or higher: Obese
假设你身高17米,体重150公斤,那么你的肥胖指数是
举一反三
- 编程一个计算身体质量指数BMI。教材案列。并输入个人的身高、体重,计算BMI值。#CalBMIv3.pyheight, weight = eval(input("请输入身高(米)和体重(公斤)[逗号隔开]: "))bmi = weight / pow(height, 2)print("BMI 数值为:{:.2f}".format(bmi))who, nat = "", ""if bmi < 18.5: who, nat = "偏瘦", "偏瘦"elif 18.5 <= bmi < 24: who, nat = "正常", "正常"elif 24 <= bmi < 25: who, nat = "正常", "偏胖"elif 25 <= bmi < 28: who, nat = "偏胖", "偏胖"elif 28 <= bmi < 30: who, nat = "偏胖", "肥胖"else: who, nat = "肥胖", "肥胖"print("BMI 指标为:国际'{0}', 国内'{1}'".format(who, nat))
- 身体质量指数(BMI)是以体重和身高的相对关系来判断营养状况和肥胖程度的指标。肥胖是指身体质量指数(BMI)为()。 A: <18.5 B: 18.5~24.9 C: 25.0~30 D: >30 E: >35
- BMI是根据体重和身高来衡量健康的一种方法。通过以千克为单位的体重除以以米为单位的身高的平方计算出BMI。下面是中国16岁以上人群的BMI图表,输入身高(米)和体重(千克),以空格分开,完成下面程序: BMI 解析 BMI[18.5 偏瘦 18.5<=BMI<=24.0 正常 24.0<BMI<30.0 偏胖 BMI]=30.0 肥胖 height=float(input("请输入身高:")) weight=float(input("请输入体重:")) bmi= bmi<18.5: r="偏瘦" elif : r="正常" bmi<30.0: r="偏胖" else: r="肥胖" print(bmi,r)
- 3.我国肥胖评估标准中体重指数(BMI)的正常范围为 A: 18.5~23.9 B: 23.0~24.9 C: 25.0~29.9 D: 17.5~22.0
- 体重指数(BMI)的计算公式,正确的是() A: BMI=体重(公斤)/身高(米) B: BMI=体重(公斤)/身高(厘米) C: BMI=体重(斤)/身高(米) D: BMI=体重(斤)/身高(厘米)