To Examples
TempDesc1 Example, source code file Program.cs
using System; ///
/// Input a Fahrenheit temperature; output a descriptor for that temperature. ///
namespace TempDesc1 { public class Program { public static void Main() { int temperature; string descriptor; Console.Write("Enter a Fahrenheit temperature: "); temperature = int.Parse(Console.ReadLine()); if (temperature < 32) { descriptor = "frigid"; } else if (temperature < 50) { descriptor = "cold"; } else if (temperature < 65) { descriptor = "chilly"; } else if (temperature < 80) { descriptor = "perfect"; } else { descriptor = "hot"; } Console.WriteLine("The temperature " + temperature + " degrees is " + descriptor + "."); Console.ReadLine(); } } }