Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
55055 潘元熙 温度转换 C++ Accepted 2 MS 276 KB 159 2023-07-26 09:59:09

Tests(1/1):


Code:

#include<iostream> #include<iomanip> using namespace std; int main(){ double F; cin>>F; cout<<fixed<<setprecision(2)<<(F-32)/9*5<<endl; return 0; }