华氏温度转摄氏温度c++
时间: 2023-08-09 19:06:36 浏览: 301
以下是将华氏温度转换为摄氏温度的 C++ 代码:
```c++
#include <iostream>
using namespace std;
int main() {
double fahrenheit, celsius;
cout << "请输入华氏温度:";
cin >> fahrenheit;
celsius = (fahrenheit - 32) * 5 / 9;
cout << "摄氏温度为:" << celsius << endl;
return 0;
}
```
运行程序后,输入华氏温度,即可输出对应的摄氏温度。
相关问题
C++语言转换华氏温度与摄氏温度,用户输入1华氏温度转摄氏温度,用户输入2摄氏温度转华氏温度
在C++中,我们可以定义两个函数来实现华氏到摄氏的转换和摄氏到华氏的转换。这里有一个简单的示例:
```cpp
#include <iostream>
// 华氏到摄氏的转换函数
double fahrenheitToCelsius(double fahrenheit) {
return (fahrenheit - 32) * 5 / 9;
}
// 摄氏到华氏的转换函数
double celsiusToFahrenheit(double celsius) {
return celsius * 9 / 5 + 32;
}
int main() {
int choice;
std::cout << "请输入选择(1:华氏转摄氏, 2:摄氏转华氏): ";
std::cin >> choice;
double temperature;
if (choice == 1) {
std::cout << "请输入华氏温度: ";
std::cin >> temperature;
double result = fahrenheitToCelsius(temperature);
std::cout << "摄氏温度为: " << result << std::endl;
} else if (choice == 2) {
std::cout << "请输入摄氏温度: ";
std::cin >> temperature;
double result = celsiusToFahrenheit(temperature);
std::cout << "华氏温度为: " << result << std::endl;
} else {
std::cout << "无效的选择,请重新输入!" << std::endl;
}
return 0;
}
```
在这个程序中,用户首先被询问选择哪种转换(1或2)。根据用户的输入,相应的温度值会被读取并进行转换。如果用户输入的是无效选项,程序会提示错误。
c++华氏温度转摄氏温度
好的,以下是C++代码实现华氏温度转摄氏温度的功能:
```c++
#include <iostream>
using namespace std;
int main() {
double fahrenheit, celsius;
// 获取用户输入的华氏温度
cout << "请输入华氏温度:";
cin >> fahrenheit;
// 进行华氏温度转摄氏温度的计算
celsius = (fahrenheit - 32) * 5 / 9;
// 输出转换后的摄氏温度
cout << "转换后的摄氏温度为:" << celsius << "℃" << endl;
return 0;
}
```
注意:以上代码中使用到了公式:C = (F - 32) * 5 / 9,其中C为摄氏温度,F为华氏温度。
阅读全文