Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <queue>
- using namespace std;
- int main() {
- queue<int> q;
- q.push(2);
- q.push(5);
- q.push(7);
- q.push(1);
- while(!q.empty()) {
- cout << q.front() << endl;
- q.pop();
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement