张田懿
张田懿
题解
20
全部文章
题解
归档
标签
去牛客网
登录
/
注册
20
778 浏览
1 回复
2020-12-12
张田懿
+关注
温度转换
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);
}
举报
收藏
赞 6
评论加载中...