| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 4488 | 郑元泰 | 02三个数相乘 | C++ | Compile Error | 0 MS | 0 KB | 114 | 2024-08-20 20:37:11 |
#include<iostream> using namespace std; int main(){ cin>>a>>b>>c; cout<<a*b*c<<endl; return 0; }
Main.cc: In function 'int main()':
Main.cc:4:10: error: 'a' was not declared in this scope
cin>>a>>b>>c;
^
Main.cc:4:13: error: 'b' was not declared in this scope
cin>>a>>b>>c;
^
Main.cc:4:16: error: 'c' was not declared in this scope
cin>>a>>b>>c;
^