โ Back to If Statements
Question 271
Fever Check
Fever Check
Read a body temperature in Celsius as a decimal number usingscanf("%f", ...). Classify it with no trailing newline: Below36.0printsLow. From36.0up to and including37.5printsNormal. Above37.5printsFever. For input35.5the output isLow; for36.8it isNormal; for38.2it isFever.
Expected Output:
Low
Topics:
If Statements
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.