| Problem | guanine |
|---|---|
| User | ArianneLim |
| Submission Time | 2025-02-27 16:12:47 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
guanine.cpp: In function ‘int main()’:
guanine.cpp:7:1: error: ‘ios_base’ has not been declared
7 | ios_base::sync_with_stdio(0);
| ^~~~~~~~
guanine.cpp:8:1: error: ‘cin’ was not declared in this scope
8 | cin.tie(0);
| ^~~
guanine.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | using namespace std;
guanine.cpp:11:1: error: ‘string’ was not declared in this scope
11 | string statement[n]; // statements
| ^~~~~~
guanine.cpp:1:1: note: ‘std::string’ is defined in header ‘<string>’; did you forget to ‘#include <string>’?
+++ |+#include <string>
1 | using namespace std;
guanine.cpp:14:1: error: ‘deque’ was not declared in this scope
14 | deque<char> dq;
| ^~~~~
guanine.cpp:1:1: note: ‘std::deque’ is defined in header ‘<deque>’; did you forget to ‘#include