Advertisement
MUstar

IoT C++ 09/12 - Project2_stack.h

Sep 12th, 2017
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. struct customer{
  5.     char fullname[35];
  6.     double payment;
  7. };typedef customer Item;
  8.  
  9. class Stack{
  10. private:
  11.     int top;
  12.     enum {MAX = 5};
  13.     Item items[MAX];
  14. public:
  15.     Stack();
  16.     bool isempty() const;
  17.     bool isfull() const;
  18.     bool push(const Item & item);
  19.     bool pop(int delnum);
  20.     void list(void);
  21.     void stack_del(char *name);
  22.     int payment(void);
  23. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement