C# 程序执行摄氏度转华氏度


首先,设置摄氏度 −

double celsius = 36;
Console.WriteLine("Celsius: " + celsius);

现在将其转换为华氏度

fahrenheit = (celsius * 9) / 5 + 32;

您可以尝试运行以下代码来将摄氏度转换为华氏度。

示例

实时演示

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Demo {

   class MyApplication {

      static void Main(string[] args) {

         double fahrenheit;

         double celsius = 36;
         Console.WriteLine("Celsius: " + celsius);

         fahrenheit = (celsius * 9) / 5 + 32;
         Console.WriteLine("Fahrenheit: " + fahrenheit);

         Console.ReadLine();
      }
   }
}

输出

Celsius: 36
Fahrenheit: 96.8

更新于: 19-6-2020

7K+ 浏览量

启动您的 职业生涯

通过完成课程获得认证

开始
广告