| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 153728 | 侯雨冉 | 02武王伐纣II | C++ | Compile Error | 0 MS | 0 KB | 165 | 2026-05-23 18:06:12 |
#include<bits/stdc++.h> using namespace std; int main() { int x; int y; cin>>x,y; cout<<x<< <<y<<endl; cout<<x*y<<endl; return 0; }
Main.cc: In function 'int main()':
Main.cc:7:13: warning: right operand of comma operator has no effect [-Wunused-value]
cin>>x,y;
^
Main.cc:8:15: error: expected primary-expression before '<<' token
cout<