โ Back to If Statements
Question 264
Water State by Temperature
Water State by Temperature
Read a temperature in Celsius (an integer) withscanf. Print the state of water with no trailing newline: If the temperature is0or below, printSolid. If it is100or above, printGas. Otherwise printLiquid. For input-5the output isSolid; for50it isLiquid; for100it isGas.
Expected Output:
Solid
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.