01 题目来源
http://noi.openjudge.cn/ch0103/08/
02 算法思路
⑴ 格式化输出形式,保留5位小数输出5 * (f - 32) / 9。
03 过程步骤
⑴ 定义double类型的变量f,代表华氏温度,通过cin语句输入f的数值;
⑵ 通过printf语句配合"%.5f"标记,输出5 * (f - 32) / 9。
04 程序代码(C++)
#include <iostream>
using namespace std;
int main()
{
double f; // 华氏温度
cin >> f;
printf("%.5f", 5 * (f - 32) / 9); // 保留5位小数输出结果
return 0;
}