Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
19601 杨为哲 温度转换 C++ Accepted 2 MS 824 KB 176 2021-11-15 16:50:58

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; int main() { float F; cin>>F; cout<<setiosflags(ios::fixed)<<setprecision(2); cout<<(F-32)*5/9<<endl; return 0; }