Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
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.

14 line
201B

  1. #include<queue>
  2. #include<iostream>
  3. int main () {
  4. std::queue<int> q;
  5. for (int i=1; i<=5; i++)
  6. q.push(i);
  7. while (!q.empty()) {
  8. std::cout << q.front() << std::endl;
  9. q.pop();
  10. }
  11. }