using System; namespace Example13 { /// /// Summary description for Class1. /// class Class1 { /// /// The main entry point for the application. /// [STAThread] static void Main(string[] args) { int temp = 31; if (temp <= 32) { Console.WriteLine("Warning: Ice on road!"); if (temp == 32) { Console.WriteLine("Temp exactly freezing, beware of water."); } else { Console.WriteLine("Watch for black ice! Temp: {0}", temp); } } } } }