Q:

C# Program to convert celcius to farenheit

0

C# Program to convert celcius to farenheit

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

using System;

namespace TechStudyCSharp
{
    class Program
    {
        static void Main(string[] args)
        {
            double celsius, fahrenheit;          
            Console.WriteLine("Enter Temperature in Celsius : ");
            celsius = Convert.ToDouble(Console.ReadLine());           
            fahrenheit = (1.8 * celsius) + 32;      
            Console.WriteLine("Temperature in Fahrenheit : "+ fahrenheit);                  
            Console.ReadKey();
        }
    }
}

Result:

Enter Temperature in Celsius : 

37

Temperature in Fahrenheit : 98.6

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Program to convert farenheit to celcius... >>
<< C# Program to convert feet to meter....