-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRide.h
153 lines (147 loc) · 1.94 KB
/
Ride.h
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#pragma once
#include <iostream>
using namespace std;
class Viking {
private:
int time; // 탑승시간
int cost; // 이용요금
int seat; // 잔여석
int limit; //키제한
public:
Viking() : limit(150), time(5), cost(2000), seat(20)
{ }
int GetCost(void) {
return cost;
}
int GetTime(void) {
return time;
}
int GetSeat(void) {
return seat;
}
int talllimit(void)
{
return limit;
}
void SetSeat(int n) {
if (n == 20)
seat = 20;
else
seat -= n;
}
};
class BumperCar {
private:
int time;
int cost;
int seat;
int limit;
public:
BumperCar() : limit(160), time(3), cost(1000), seat(5)
{ }
int GetCost(void) {
return cost;
}
int GetTime(void) {
return time;
}
int GetSeat(void) {
return seat;
}
int talllimit(void)
{
return limit;
}
void SetSeat(int n) {
if (n == 5)
seat = 5;
else
seat -= n;
}
};
class T {
private:
int time;
int cost;
int seat;
int limit;
public:
T() : limit(150), time(5), cost(3000), seat(20)
{ }
int GetCost(void) {
return cost;
}
int GetTime(void) {
return time;
}
int GetSeat(void) {
return seat;
}
int talllimit(void) {
return limit;
}
void SetSeat(int n) {
if (n == 20)
seat = 20;
else
seat -= n;
}
};
class Hurricane {
private:
int time;
int cost;
int seat;
int limit;
public:
Hurricane() : limit(140), time(2), cost(2000), seat(6)
{ }
int GetCost(void) {
return cost;
}
int GetTime(void) {
return time;
}
int GetSeat(void) {
return seat;
}
int talllimit(void)
{
return limit;
}
void SetSeat(int n) {
if (n == 6)
seat = 6;
else
seat -= n;
}
};
class Amazon {
private:
int time;
int cost;
int seat;
int limit;
public:
Amazon() : limit(130), time(4), cost(2500), seat(8)
{ }
int GetCost(void) {
return cost;
}
int GetTime(void) {
return time;
}
int GetSeat(void) {
return seat;
}
int talllimit(void)
{
return limit;
}
void SetSeat(int n) {
if (n == 8)
seat = 8;
else
seat -= n;
}
};