Advertisement
Guest User

Untitled

a guest
May 20th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. #include<iostream>
  2.  
  3. #include "queue_interface.h"
  4.  
  5. using namespace std;
  6.  
  7. int main() {
  8. queue_interface<int> cir;
  9. cir.push(2);
  10. cir.push(3);
  11. cir.push(5);
  12. for(int i = 0; i < cir.size(); ++i) {
  13. cout << cir[i] << endl;
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement