0
点赞
收藏
分享

微信扫一扫

一本通1013:温度表达转化答案

他说Python 2022-02-01 阅读 77
#include <bits/stdc++.h>
using namespace std;
int main()
{
	double c,f;
	cin>>f;
	c=5*(f-32)/9;
	printf("%.5f",c);
}
举报

相关推荐

0 条评论