Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #include<iostream>
  2. #include <queue>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. cout << "F skupina, Denis Pinter" << endl;
  8.  
  9. queue<string> rad2;
  10. if(rad2.empty())cout << " je prazdny ";
  11. rad2.push("doc1");
  12. rad2.push("doc2");
  13. rad2.push("doc3");
  14. rad2.push("doc4");
  15.  
  16.  
  17. cout << rad2.front();
  18. cout << rad2.back();
  19.  
  20. cout << " pocet prvkov " << rad2.size();
  21.  
  22. return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement