Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90545 华雅萱 02三个数相乘 C++ Compile Error 0 MS 0 KB 120 2024-09-15 14:36:14

Tests(0/0):


Code:

#ilude<iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout<<a*b*c; return 0; }


Run Info:

Main.cc:1:2: error: invalid preprocessing directive #ilude
 #ilude
  ^
Main.cc: In function 'int main()':
Main.cc:5:1: error: 'cin' was not declared in this scope
 cin>>a>>b>>c;
 ^
Main.cc:6:1: error: 'cout' was not declared in this scope
 cout<