-->
当前位置:首页 > 题库

PROGRAMMING:Body Mass Index Calculator

Luz5年前 (2021-05-10)题库425
To determine whether a person is overweight or obese, you can use a measure called the body mass index (BMI).
The formulas for calculating BMI are
![ bmi_ 1.png](~/6033d867-1a9f-4887-b3b2-656022f341cd.png)
or
![ bmi_ 2.png](~/f1b95b98-22d7-4a3f-a365-3776eab8daf3.png)
Create a BMI calculator application that reads the user’s weight in pounds and height in inches
(or, if you prefer, the user’s weight in kilograms and height in meters), then calculates and displays
the user’s body mass index. Finally, evaluate his/her BMI. The BMI value is:
![ bmi value2.png](~/51016aac-b177-4f74-9faa-54bb04164cd7.png)
### Input Specification:
The first line: input 1 for reads the user’s weight in pounds and height in inches, or input 2 for read the user’s weight in kilograms and height in meters;
the second line: 2 double precision data for weight and height, separate by a space.
### Output Specification:
The first line: print the value of BMI, keep 2 fractional digits.
The second line: print the evaluation of the user's BMI.
### Sample Input:
```in
two
52.5 1.66
```
### Sample Output:
```out
nineteen point zero five
Normal
```







answer:If there is no answer, please comment