| Problem | parallelogramisation |
|---|---|
| User | AaravRastogi |
| Submission Time | 2025-12-10 14:50:49 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
parallelogramisation.cpp: In function ‘int main()’:
parallelogramisation.cpp:3:11: error: ‘cin’ was not declared in this scope
3 | int q; cin >> q ;
| ^~~
parallelogramisation.cpp:5:4: error: ‘deque’ was not declared in this scope
5 | deque<int> A();
| ^~~~~
parallelogramisation.cpp:5:10: error: expected primary-expression before ‘int’
5 | deque<int> A();
| ^~~
parallelogramisation.cpp:11:34: error: ‘A’ was not declared in this scope
11 | if (c == 1){int x; cin >> x; A.push_back(x);}
| ^
parallelogramisation.cpp:12:22: error: ‘A’ was not declared in this scope
12 | else if (c == 2){A.pop_back();}
| ^
parallelogramisation.cpp:13:23: error: ‘cout’ was not declared in this scope
13 | else if (c == 3){ cout << A.pop_front() << "\n"}
|