| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 152884 | 彭俊熙 | 06整数除法 | C++ | Compile Error | 0 MS | 0 KB | 158 | 2026-05-05 13:55:49 |
#include<iostream>; using namespace std; int main() { int a,b; double c; cin>>a>>b>>c; a/b=c; printf("%.5lf\n",c); cout<<c<<endl; return 0; }
Main.cc:1:19: warning: extra tokens at end of #include directive
#include;
^
Main.cc: In function 'int main()':
Main.cc:7:5: error: lvalue required as left operand of assignment
a/b=c;
^