Problem | alienalien |
---|---|
User | wneedywelon |
Submission Time | 2023-11-14 19:24:34 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
alienalien.cpp: In function ‘int main()’:
alienalien.cpp:5:3: error: ‘ios_base’ has not been declared
5 | ios_base::sync_with_stdio(false);
| ^~~~~~~~
alienalien.cpp:6:3: error: ‘cin’ was not declared in this scope
6 | cin.tie(NULL);
| ^~~
alienalien.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | using namespace std;
alienalien.cpp:6:11: error: ‘NULL’ was not declared in this scope
6 | cin.tie(NULL);
| ^~~~
alienalien.cpp:1:1: note: ‘NULL’ is defined in header ‘<cstddef>’; did you forget to ‘#include <cstddef>’?
+++ |+#include <cstddef>
1 | using namespace std;
alienalien.cpp:14:7: error: ‘cout’ was not declared in this scope
14 | cout<<"NO";
| ^~~~
alienalien.cpp:14:7: note: ‘std::cout’ is defined in header ‘<iostream&g