input the weight of a person and print whether he is "over weight"or not {<=80"overweight"}
Answers
Answered by
3
Input : height(in metre): 1.79832
weight(in Kg): 70
Output : The BMI is 21.64532402096181, so Healthy.
Explanation : 70/(1.79832*1.79832)
Input : height(in metre): 1.58496
weight(in Kg): 85
Output : The BMI is 33.836256857260594 so Suffering from Obesity
Explanation : 70/(1.58496*1.58496)
Similar questions