CJCoding With Joseph

Fever Check

Read a body temperature in Celsius as a decimal number using scanf("%f", ...). Classify it with no trailing newline:

Below 36.0 prints Low.
From 36.0 up to and including 37.5 prints Normal.
Above 37.5 prints Fever.

For input 35.5 the output is Low; for 36.8 it is Normal; for 38.2 it is Fever.

Expected Output:

Low
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
35.5\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 (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.