Body Mass Index

Problem #28

Tags: practical arithmetic if-else c-1 c-0 simple

Who solved this?

Back to English version

让我们来将编程技能运用到准科学问题上 —— 因为只学习抽象的东西有些枯燥。

测量身体体质的一个简单的方法在十九世纪中叶被提出来。它只取决于一个人的身高和体重 —— 它被称为 Body Mass Index 或 者 BMI.它被定义为:

BMI = weight / height^2

其中体重以千克为单位,身高以为单位。

四个通常的的等级被提出来:

Underweight     -           BMI < 18.5
Normal weight   -   18.5 <= BMI < 25.0
Overweight      -   25.0 <= BMI < 30.0
Obesity         -   30.0 <= BMI

例如,如果我的体重是80kg,身高是1.73m,那么我可以计算:

BMI = 80 / (1.73)^2 = 26.7

即有点超重。

我们将不会讨论这个级别是否正确。相反,你应该简单的计算几个人的等级。

输入数据 在第一行包含人数。
其它行将会在每一行包含两个数 —— 以千克为单位的体重和以米为单位的身高。
答案 对于每一个测试用例应该包含单词under,normal,over,obes,并使用空格分开。示例 :

输入数据:
3
80 1.73
55 1.58
49 1.91

答案:
over normal under
You need to login to get test data and submit solution.