Maison > Article > développement back-end > Programme C# pour convertir Fahrenheit en Celsius
Tout d'abord, définissez la température Fahrenheit -
double fahrenheit = 97; Console.WriteLine("Fahrenheit: " + fahrenheit);
Maintenant, convertissez-la en Celsius -
celsius = (fahrenheit - 32) * 5 / 9;
Vous pouvez essayer d'exécuter le code suivant pour convertir Fahrenheit en Celsius.
Démo en direct
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
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!