Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
41843 陈栋 温度转换 C++ Accepted 2 MS 268 KB 138 2022-11-06 23:15:21

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ double s,t; cin>>s; t=(s-32)*5/9.0; printf("%.2f",t); return 0; }