| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149947 | 向运淇 | 11温度转换II | C++ | Compile Error | 0 MS | 0 KB | 120 | 2026-03-21 11:27:41 |
#include<iostream> using namespace std; int main(){ double f; cin>>f; printf("%.4lf",(f-32)*5*9); reurn 0; }
Main.cc: In function 'int main()': Main.cc:7:2: error: 'reurn' was not declared in this scope reurn 0; ^