Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
34819 于俊杰 温度转换 C++ Accepted 1 MS 812 KB 134 2022-08-03 13:37:29

Tests(1/1):


Code:

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