1013:温度表达转化
#include<cstdio>
using namespace std;
int main()
{
double x;
scanf("%lf",&x);
printf("%.5f", 5.0*(x-32)/9);
return 0;
}
本文来自博客园,作者:I'm_江河湖海,转载请注明原文链接:https://www.cnblogs.com/jhhh/p/16760644.html
#include<cstdio>
using namespace std;
int main()
{
double x;
scanf("%lf",&x);
printf("%.5f", 5.0*(x-32)/9);
return 0;
}
本文来自博客园,作者:I'm_江河湖海,转载请注明原文链接:https://www.cnblogs.com/jhhh/p/16760644.html