States of water

Sign in to test your solution.
// States of water problem using System; class Submission { // ------------------------- // Subprograms // ------------------------- static string water_state(double centigrade) { } // ------------------------- // Main program // ------------------------- public static void Main(string[] args) { string state = water_state(temperature); Console.WriteLine($"The water is in a {state} state."); } }
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.