题解 | #健康评估#
健康评估
https://www.nowcoder.com/practice/08b28e61ff6345febf09969b3a167f7e
weight,height = map(float,input().split())
BMI = weight / (height**2)
print('Normal') if 18.5 <= BMI <= 23.9 else print('Abnormal')
#python#健康评估
https://www.nowcoder.com/practice/08b28e61ff6345febf09969b3a167f7e
weight,height = map(float,input().split())
BMI = weight / (height**2)
print('Normal') if 18.5 <= BMI <= 23.9 else print('Abnormal')
#python#相关推荐
招聘动态