Mula-mula, tetapkan suhu Fahrenheit -
double fahrenheit = 97; Console.WriteLine("Fahrenheit: " + fahrenheit);
Sekarang tukarkannya kepada Celsius -
celsius = (fahrenheit - 32) * 5 / 9;
Anda boleh cuba jalankan kod berikut untuk menukar Fahrenheit kepada Celsius.
Demo secara langsung
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Demo { class MyApplication { static void Main(string[] args) { double celsius; double fahrenheit = 97; Console.WriteLine("Fahrenheit: " + fahrenheit); celsius = (fahrenheit - 32) * 5 / 9; Console.WriteLine("Celsius: " + celsius); Console.ReadLine(); } } }
Fahrenheit: 97 Celsius: 36.1111111111111
Atas ialah kandungan terperinci Program C# untuk menukar Fahrenheit kepada Celsius. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!