Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
91817 | 唐诗阳 | 02武王伐纣II | C++ | Compile Error | 0 MS | 0 KB | 134 | 2024-09-22 15:18:21 |
#include<iostream> // cin\cout\endl using namespace std; int main(){ int a,b,c; cin>>a>>b; cout<<a*b; return 0;
Main.cc: In function 'int main()': Main.cc:4:13: warning: unused variable 'c' [-Wunused-variable] int a,b,c; ^ Main.cc:7:13: error: expected '}' at end of input return 0; ^