Problem eelimination
User PlayVoltz
Submission Time 2023-08-15 21:16:53
Score 0
Max Time N/A
Max Memory N/A

Compile Error

eelimination.cpp:1:2: error: invalid preprocessing directive #inlcude; did you mean #include?
1 | #inlcude <bits/stdc++.h>
| ^~~~~~~
| include
eelimination.cpp: In function ‘int main()’:
eelimination.cpp:6:2: error: ‘cin’ was not declared in this scope
6 | cin>>n;
| ^~~
eelimination.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | #inlcude <bits/stdc++.h>
eelimination.cpp:7:2: error: ‘vector’ was not declared in this scope
7 | vector <int> vect(n, 0);
| ^~~~~~
eelimination.cpp:1:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
+++ |+#include <vector>
1 | #inlcude <bits/stdc++.h>
eelimination.cpp:7:10: error: expected primary-expression before ‘int’
7 | vector <int> vect(n, 0);<