Guest User

вапа

a guest
Oct 22nd, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. void only(int element)
  2.     {
  3.         cout << endl;
  4.         while (!isEmpty())
  5.         {
  6.  
  7.             int n = this->pop();
  8.             if (n != element)
  9.                 cout <<  n  << " ";
  10.         }
  11.         cout << endl;
  12.  
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment