CJCoding With Joseph

Fever Check

Read a double temperature (a body temperature in degrees Fahrenheit). A temperature of 100.4 or higher counts as a fever. Print Fever if the temperature is at least 100.4, otherwise print Normal.

For example, given the input 101.2, the program prints:

Fever

Expected Output:

Fever
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
101.2
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 (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.