C程序 将华氏温度转换为摄氏温度
给出一个华氏度的温度n,将其转换为摄氏度的温度。例子。
Input: 32
Output: 0
Input: -40
Output: -40
华氏度数转换为摄氏度数的公式
T(°C) = (T(°F) - 32) × 5/9
// C Program to convert
// Fahrenheit to Celsuis
#include <stdio.h>
// Function to convert Degree
// Fahrenheit to Degree Celsuis
float fahrenheit_to_celsius(float f)
{
return ((f - 32.0) * 5.0 / 9.0);
}
// Driver code
int main()
{
float f = 40;
// Passing parameter to function
printf("Temperature in Degree Celsius : %0.2f",
fahrenheit_to_celsius(f));
return 0;
}
输出:
Temperature in Degree Celsius : 4.44
时间复杂度: O(1)
辅助空间: O(1)