먼저 온도를 화씨로 설정하세요 -
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!