| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 147247 | 赖泓宇 | 06整数除法 | C++ | Compile Error | 0 MS | 0 KB | 184 | 2026-02-03 16:55:58 |
# include<iostream> # include<cstdio> # include<iomanip> using namespace std; int main(){ double a,b; cin >>a>>b; cout<<fixed<<setprecision(5); cout<<a/b; return 0;
Main.cc: In function 'int main()':
Main.cc:10:9: error: expected '}' at end of input
return 0;
^