首頁  >  文章  >  後端開發  >  將華氏溫度轉換為攝氏度的 C# 程序

將華氏溫度轉換為攝氏度的 C# 程序

WBOY
WBOY轉載
2023-09-15 11:53:091206瀏覽

将华氏温度转换为摄氏度的 C# 程序

首先,設定華氏溫度-

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中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除