Facebook
From Mature Guinea Pig, 1 Year ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 54
  1. #include<stack>
  2.  
  3. #include<iostream>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8.  
  9. stack<int>stosLiczb;
  10.  
  11. stosLiczb.push(12);
  12.  
  13. stosLiczb.push(10); stosLiczb.push(4);
  14.  
  15. stosliczb.push(9);
  16.  
  17. if (stosLiczb.empty())
  18.  
  19. cout<<"stos jest pusty"<<endl;
  20.  
  21. } else{
  22.  
  23. cout<<"na stosie znajduje sie przynajmniej jeden element"<<endl;
  24.  
  25. }
  26.  
  27. return 0;
  28.  
  29. }