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
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