Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
8144 余立涵 11温度转换II C++ Accepted 0 MS 256 KB 151 2025-06-14 19:48:40

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ double x,y; cin>>x; y=(x-32)*5/9; printf("%.4lf\n",y); return 0; }