C# Program to perform Celsius to Fahrenheit Conversion


Firstly, set the Celsius temperature −

double celsius = 36;
Console.WriteLine("Celsius: " + celsius);

Now convert it into Fahrenheit:

fahrenheit = (celsius * 9) / 5 + 32;

You can try to run the following code to convert Celsius to Fahrenheit.

Example

Live Demo

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Demo {

   class MyApplication {

      static void Main(string[] args) {

         double fahrenheit;

         double celsius = 36;
         Console.WriteLine("Celsius: " + celsius);

         fahrenheit = (celsius * 9) / 5 + 32;
         Console.WriteLine("Fahrenheit: " + fahrenheit);

         Console.ReadLine();
      }
   }
}

Output

Celsius: 36
Fahrenheit: 96.8

karthikeya Boyini
karthikeya Boyini

I love programming (: That's all I know

Updated on: 19-Jun-2020

5K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements