Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
103563 | 李明秦 | 06小数除法 | C++ | Compile Error | 0 MS | 0 KB | 161 | 2024-12-29 12:31:37 |
#include<iostream> #include<cstdio> using namespace std; int main(){ int a,b,c,; cin>>a>>b>>c; cout<<c<<" "<<" "<<a<<" "<<b; return 0; }
Main.cc: In function 'int main()': Main.cc:5:15: error: expected unqualified-id before ';' token int a,b,c,; ^