To Examples
ConvTemp1 Example, source code file Program.cs
using System; ///
/// ConvTemp1 Example, source code file Program.cs. /// Convert a Celsius temperature to Fahrenheit. ///
namespace ClickCounter1 { public class Program { public static void Main() { int cel, fahr; string input, output; Console.Write("Enter a Celsius temperature: "); input = Console.ReadLine(); cel = int.Parse(input); fahr = 9 * cel / 5 + 32; output = fahr.ToString(); Console.WriteLine("Fahrenheit temperature is " + fahr + "."); Console.ReadLine(); } } }