You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
657 B
C#

/*
* C# Program to Convert Fahrenheit to Celsius
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Celsius
{
class Program
{
static void Main(string[] args)
{
double celsius;
Console.Write("Enter Fahrenheit temperature : ");
double fahrenheit = Convert.ToDouble(Console.ReadLine());
celsius = (fahrenheit - 32) * 5 / 9;
Console.WriteLine("The converted Celsius temperature is" + celsius);
Console.ReadLine();
}
}
}
/*
Output:
Enter Fahrenheit temperature : 95.5
The converted Celsius temperature is35.2777777777778