You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include<queue>
- #include<iostream>
-
- int main () {
- std::queue<int> q;
- for (int i=1; i<=5; i++)
- q.push(i);
-
- while (!q.empty()) {
- std::cout << q.front() << std::endl;
- q.pop();
- }
- }
|