首先,設定華氏溫度-
double fahrenheit = 97; Console.WriteLine("Fahrenheit: " + fahrenheit);
現在將其轉換為攝氏度-
celsius = (fahrenheit - 32) * 5 / 9;
您可以嘗試執行以下程式碼將華氏溫度轉換為攝氏度。
現場示範
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
以上是將華氏溫度轉換為攝氏度的 C# 程序的詳細內容。更多資訊請關注PHP中文網其他相關文章!