Problem | parallelogramisation |
---|---|
User | CastyLoz17 |
Submission Time | 2024-06-27 23:03:37 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
parallelogramisation.cpp: In function ‘int main()’:
parallelogramisation.cpp:10:5: error: ‘deque’ was not declared in this scope
10 | deque<long long> stack;
| ^~~~~
parallelogramisation.cpp:3:1: note: ‘std::deque’ is defined in header ‘<deque>’; did you forget to ‘#include <deque>’?
2 | #include <vector>
+++ |+#include <deque>
3 | #include <string>
parallelogramisation.cpp:10:11: error: expected primary-expression before ‘long’
10 | deque<long long> stack;
| ^~~~
parallelogramisation.cpp:19:13: error: ‘stack’ was not declared in this scope
19 | stack.push_back(value);
| ^~~~~
parallelogramisation.cpp:3:1: note: ‘std::stack’ is defined in header ‘<stack>’; did you forget to ‘#include <stack>’?
2 | #include <vector>
+++ |+#include <stack>
3 | #include <string>
parallelogr