Advertisement
Ilya_konstantinov

19ETEMPL

Mar 18th, 2024
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | Source Code | 0 0
  1. struct Stack{
  2. };
  3.  
  4. void pop(Stack&) {
  5. }
  6.  
  7. void push(Stack&, int) {
  8. }
  9.  
  10. int max(Stack&) {
  11. }
  12.  
  13. int top(Stack&) {
  14. }
  15.  
  16. void del(Stack&) {
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement