| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 157440 | 李泽曦 | 03温度转换 | C++ | Compile Error | 0 MS | 0 KB | 136 | 2026-07-23 21:50:47 |
#include<iostream> using namespace std; int main() { float C; cin>>C; float F=C*9/5+32 cout<<F; return 0; }
Main.cc: In function 'int main()':
Main.cc:8:5: error: expected ',' or ';' before 'cout'
cout<