题解 | #健康评估#
健康评估
https://www.nowcoder.com/practice/08b28e61ff6345febf09969b3a167f7e
w,h=map(float,input().split()) BMI=w/h**2 if 18.5<=BMI<=23.9: print("Normal") else: print("Abnormal")
健康评估
https://www.nowcoder.com/practice/08b28e61ff6345febf09969b3a167f7e
w,h=map(float,input().split()) BMI=w/h**2 if 18.5<=BMI<=23.9: print("Normal") else: print("Abnormal")
相关推荐