| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144097 | 杨润东 | 02三个数相乘 | C++ | Compile Error | 0 MS | 0 KB | 114 | 2026-01-18 20:06:03 |
#include using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout<<a*b*c; return 0; }
Main.cc:1:9: error: #include expects "FILENAME" or
#include
^
Main.cc: In function 'int main()':
Main.cc:5:5: error: 'cin' was not declared in this scope
cin>>a>>b>>c;
^
Main.cc:6:5: error: 'cout' was not declared in this scope
cout<