CJCoding With Joseph

BMI Category (Input)

Read an int called bmi from standard input and print its category using an if / else-if chain: below 18 prints Underweight; 18 to 24 (inclusive) prints Normal; 25 to 29 (inclusive) prints Overweight; 30 or above prints Obese.

For the input 22 the output is:

Normal

Expected Output:

Normal
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
22\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.