CJCoding With Joseph

Water State by Temperature

Read a temperature in Celsius (an integer) with scanf. Print the state of water with no trailing newline:

If the temperature is 0 or below, print Solid.
If it is 100 or above, print Gas.
Otherwise print Liquid.

For input -5 the output is Solid; for 50 it is Liquid; for 100 it is Gas.

Expected Output:

Solid
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
-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.