当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Fahrenheit转Celsius用法及代码示例


在这里,我们将华氏温度值转换为摄氏温度值。华氏和摄氏是温度的度量单位,以度为单位oF 和oC分别。

公式

Celsius = (Fahrenheit - 32) / 1.8

方法

  1. 将华氏度的值初始化为 50.0,将摄氏度的值初始化为 0.0
  2. 使用上面给出的公式计算摄氏度。
  3. 显示摄氏温度。

示例

Java


// Java Program to Convert Fahrenheit into Celsius
  
class fahrenheittocelsius {
    
    public static void main(String[] args)
    {
        // temperature in fahrenheit
        double fahrenheit = 50.0, celsius = 0.0;
  
        // calculate celsius temperature
        celsius = (fahrenheit - 32) / 1.8;
  
        // print the celsius temperature
        System.out.println(
            "value of temperature in celsius:" + celsius);
    }
}
输出
value of temperature in celsius:10.0

时间复杂度:O(1)

相关用法


注:本文由纯净天空筛选整理自abhijithoyur大神的英文原创作品 Java Program to Convert Fahrenheit into Celsius。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。