Using C# Console application here comes a simple program which can convert the temperature defined in Fahrenheit to Celsius.
This Program will also runs in Windows form too as we only need the same logic and some buttons and labels in it.
The Following program is of a Single Logic
celsius = (fahrenheit - 32) * 5 / 9;
Output :
This Program will also runs in Windows form too as we only need the same logic and some buttons and labels in it.
The Following program is of a Single Logic
celsius = (fahrenheit - 32) * 5 / 9;
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace fartocelcpostslush { class Postslush { static void Main(string[] args) { double celsius; Console.WriteLine("Enter temperature to convert Fahrenheit to Celsius"); double fahrenheit = Convert.ToDouble(Console.ReadLine()); Console.WriteLine("The entered Farenheit temperature is: " + fahrenheit); celsius = (fahrenheit - 32) * 5 / 9; Console.WriteLine("The converted temperature is" + celsius + " degrees Celsius"); Console.ReadLine(); } } }
Output :
Tags:
csharp.net