/ SeriousOJ /

Record Detail

Compile Error

foo.cc:1:2: error: invalid preprocessing directive #inclue; did you mean #include?
    1 | #inclue<bits/stdc++.h>
      |  ^~~~~~
      |  include
foo.cc: In function 'int main()':
foo.cc:7:9: error: 'cout' was not declared in this scope
    7 |         cout<<0<<endl;
      |         ^~~~
foo.cc:1:1: note: 'std::cout' is defined in header '<iostream>'; did you forget to '#include <iostream>'?
  +++ |+#include <iostream>
    1 | #inclue<bits/stdc++.h>

Code

#inclue<bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'

int main(){
	cout<<0<<endl;
}

Information

Submit By
Type
Pretest
Problem
P1128 Roy and Product
Language
C++17 (G++ 13.2.0)
Submit At
2025-01-12 17:52:50
Judged At
2025-01-12 17:52:50
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes