6. 温度
Posted hello-nolan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6. 温度相关的知识,希望对你有一定的参考价值。
题目:
输入华氏温度 f ,输出对应的摄氏温度 c,保留3位小数。提示:c = 5( f - 32) / 9
思路:
直接计算即可。
代码:
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
double f = 0.0;
cin >> f;
double c = 5 * (f - 32) / 9;
cout << setprecision(3) << fixed << c << endl;
return 0;
}
以上是关于6. 温度的主要内容,如果未能解决你的问题,请参考以下文章