将华氏度转换为摄氏度的Java程序
这里我们将华氏温度值转换为摄氏温度值。华氏度和摄氏度是温度的度量单位,单位分别为o F 和o C。
公式
Celsius = (Fahrenheit - 32) / 1.8
方法
- 将华氏度的值初始化为 50.0,将摄氏度的值初始化为 0.0
- 使用上面给出的公式计算摄氏度。
- 显示摄氏温度。
例子
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)