-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzad5.rozdzial10.cpp
More file actions
77 lines (77 loc) · 1.3 KB
/
zad5.rozdzial10.cpp
File metadata and controls
77 lines (77 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include<iostream>
#include<cstring>
using namespace std;
struct customer
{
char fullname[35];
double payment;
};
double general = 0;
typedef customer Item;
class Stack
{
private:
enum {MAX = 10};
customer customers[MAX];
int top;
public:
Stack();
bool isempty() const;
bool isfull() const;
bool push(const Item& item);
bool pop(Item& item);
};
Stack:: Stack()
{
top = 0;
}
bool Stack:: isempty() const
{
return top == 0;
}
bool Stack:: isfull() const
{
return top == MAX;
}
bool Stack:: push(const Item& item)
{
if(top < MAX)
{
customers[top++] = item;
return true;
}
else return false;
}
bool Stack:: pop(Item& item)
{
if(top > 0)
{
item = customers[--top];
general += item.payment;
cout << general << endl;
return true;
}
else return false;
}
int main()
{
Stack stos;
Item c;
int i = 0;
while( i++ < 3)
{
char n[35];
double p;
cout << "Podaj nazwe: ";
cin >> n;
strcpy(c.fullname,n);
cout << "Podaj platnosc: ";
cin >> p;
c.payment = p;
stos.push(c);
}
i = 0;
while(i++ < 3)
stos.pop(c);
return 0;
}