C++程序 将华氏温度转换为摄氏温度
给定华氏温度 n ,将其转换成 摄氏温度 。下面是一些 示例
输入: 32
输出: 0
输入: -40
输出: -40
将华氏温度转换成摄氏温度的公式
T(°C) = (T(°F) - 32) × 5/9
// C++ program to convert Fahrenheit
// scale to Celsius scale
#include <bits/stdc++.h>
using namespace std;
// Function to convert Fahrenheit
// to Celsius
float Conversion(float n)
{
return (n - 32.0) * 5.0 / 9.0;
}
// Driver code
int main()
{
float n = 40;
cout << Conversion(n);
return 0;
}
输出:
4.44444
时间复杂度: O(1)
辅助空间: O(1)