โ Back to If Statements
Question 384
BMI Category
BMI Category
Read two doubles:weightin kilograms andheightin meters. Compute the Body Mass Index asweight / (height * height)and print the category: - BMI below 18.5 ->Underweight- BMI below 25 ->Normal- BMI below 30 ->Overweight- 30 or above ->ObeseFor example, given the input70 1.75, the BMI is about 22.9, so the program prints: Normal
Expected Output:
Normal
Topics:
If Statements
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.