| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 141717 | 陈峻徳 | 02三个数相乘 | C++ | Compile Error | 0 MS | 0 KB | 118 | 2025-12-28 14:43:42 |
include<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout<<a*b*c<<endl; return 0; }
Main.cc:1:1: error: 'include' does not name a type include ^ Main.cc: In function 'int main()': Main.cc:5:2: error: 'cin' was not declared in this scope cin>>a>>b>>c; ^ Main.cc:6:2: error: 'cout' was not declared in this scope cout<