package class3_1; import java.util.Scanner; public class Celsius { public static void main(String[] args) { final double FREEZING_CELSIUS = 0; final double BOILING_CELSIUS = 100; Scanner in = new Scanner(System.in); System.out.println("Please enter the temperature of " + "the water in degrees Celsius:"); double temperatureDegrees = in.nextDouble(); if(FREEZING_CELSIUS < temperatureDegrees && temperatureDegrees < BOILING_CELSIUS) { System.out.println("The water is liquid"); } else if(FREEZING_CELSIUS >= temperatureDegrees) { System.out.println("It's freezing!"); } else { // boiling water System.out.println("It's boiling!"); } int x = 5; x *= 3; x *= 3; System.out.println("x is:"+x); } }