20
温度转换
https://ac.nowcoder.com/acm/problem/22004
include<bits/stdc++.h>
using namespace std;
int main()
{
double f,c;
cin>>f;
c=(f-32)*5/9;
printf("%.3lf",c);
}
温度转换
https://ac.nowcoder.com/acm/problem/22004
using namespace std;
int main()
{
double f,c;
cin>>f;
c=(f-32)*5/9;
printf("%.3lf",c);
}
相关推荐