-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaCookProgram.txt
More file actions
311 lines (194 loc) · 6.82 KB
/
JavaCookProgram.txt
File metadata and controls
311 lines (194 loc) · 6.82 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
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
import java.util.Random;
public class Cook {
// >>> please respect for my labour :)<<<
private String type;
private String name;
private String id;
private double baseSalarys;
private double bounties;
//<<<I create constructors below>>>>
public Cook() {
this.bounties = bounties;
this.baseSalarys = baseSalarys;
this.name = name;
this.type = type;
this.id = id;
}
public Cook(String type,String name,String id,double baseSalarys,double bounties) {
if(verify(type)) //verifier is located at down.
this.type = type;
setType(type);
this.id = randomIdGenerator();
this.bounties = bounties;
this.name = name;
this.baseSalarys = baseSalarys;
}
// <<<I write getters and setters down below>>>>
public String getType() {
return type;
}
public String getName() {
return name;
}
public String getId() {
return id;
}
public void setType(String type) {
if(verify(type))
this.type = type;
}
public void setName(String name) {
this.name = name;
}
public void setId(String id) {
this.id = randomIdGenerator();
}
public void setBaseSalarys(double baseSalarys) {
this.baseSalarys = baseSalarys;
}
public void setBounties(double bounties) {
this.bounties = bounties;
}
public String ToString() {
return "Type: "+type+" Name: "+name+"\n"+"ID: "+id+" Total Salary: "+(baseSalarys+bounties)+"\n";
}
private String randomIdGenerator() {
Random r = new Random();
String chars[] = {"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"};
String RandomChar1 = chars[r.nextInt(chars.length)];
String RandomChar2 = chars[r.nextInt(chars.length)];
String RandomChar3 = chars[r.nextInt(chars.length)];
int randomInt1 = r.nextInt(10);
int randomInt2 = r.nextInt(10);
return RandomChar1.toUpperCase()+RandomChar2.toUpperCase()+RandomChar3.toUpperCase()+randomInt1+randomInt2 ;
}
// as you can understand I create a verifier that checks whether input is a valid position or not.
private boolean verify(String input){
if(input == "Chef" || input == "Chef Assistant"|| input == "Sous Chef" )
return true;
else
return false;
}
}
//____________________________________________________________
//<<<<<<<<<<<<<<<<<<<<Test Class Is Down Below>>>>>>>>>>>>>>>>>>>>
//____________________________________________________________
import java.util.ArrayList;
import java.util.Random;
import java.util.Scanner;
public class Test {
public static void main(String[] args) {
Cook cooks = new Cook(); //Again Cook class checks cook types.
Scanner sc = new Scanner(System.in);
System.out.println("#Chefs ?");
int ChefNumber = sc.nextInt();
System.out.println("#Chef Assistants ?");
int ChefAssistant = sc.nextInt();
System.out.println("#Sous Chefs ?");
int SousChef = sc.nextInt();
// <<<<<<<<<<<<<<<<<<<<<Array lists>>>>>>>>>>>>>>>>>>>>>>>>>
ArrayList<Double> CookBounties = new ArrayList<Double>();
ArrayList<Double> CookBaseSalary = new ArrayList<Double>();
ArrayList<String> CookId = new ArrayList<String>();
ArrayList<String> CookType = new ArrayList<String>();
ArrayList<String> CookName = new ArrayList<String>();
// ArrayList<double> CookSalary = new ArrayList<double>();
//________________________________________________________________________
for (int i = 0; i < ChefNumber; i++) { //chef loop<<<<<<<<<<<<<<<<<<<<<<
System.out.println("Enter your name please, Chef !");
String cname = sc.next();
System.out.println("What is your salary expectation, "+cname+" ?");
int salary = sc.nextInt();
while(salary>2000) {
System.out.println("Exceeds,Try again!");
salary = sc.nextInt();
}
CookBaseSalary.add(baseSalaryMethod("Chef"));
CookBounties.add(SalaryMethod("Chef"));
CookType.add("Chef");
CookId.add("");
CookName.add(cname);
cooks.setName(cname);
}
//________________________________________________________________________
for (int i = 0; i < ChefAssistant; i++) {
System.out.println("Enter your name please, Chef Assistant !");
String cname = sc.next();
System.out.println("What is your salary expectation, "+cname+" ?");
int salary = sc.nextInt();
while(salary>1500) {
System.out.println("Exceeds,Try again!");
salary = sc.nextInt();
}
CookBaseSalary.add(baseSalaryMethod("Chef Assistant"));
CookBounties.add(SalaryMethod("Chef Assistant"));
CookType.add("Chef Assistant");
CookId.add("");
CookName.add(cname);
cooks.setName(cname);
}
//________________________________________________________________________
for (int i = 0; i < SousChef; i++) {
System.out.println("Enter your name please,Sous Chef !");
String cname = sc.next();
System.out.println("What is your salary expectation, "+cname+" ?");
int salary = sc.nextInt();
while(salary>1000) {
System.out.println("Exceeds,Try again!");
salary = sc.nextInt();
}
CookBaseSalary.add(baseSalaryMethod("Sous Chef"));
CookBounties.add(SalaryMethod("Sous Chef"));
CookType.add("Sous Chef");
CookId.add("");
CookName.add(cname);
cooks.setName(cname);
}
sc.close();
//________________________________________________________________________
System.out.println();
for (int i = 0; i <CookName.size(); i++) {
//<<<I was Include Cook class down below>>>
cooks.setName(CookName.get(i));
cooks.setId(CookId.get(i));
cooks.setType(CookType.get(i));
cooks.setBounties(CookBounties.get(i));
cooks.setBaseSalarys(CookBaseSalary.get(i));
System.out.println(cooks.ToString()+"\n");
}
}
private static double SalaryMethod(String type) {
Random r = new Random();
double salary;
double salaryConstant;
int weekend;
if(type =="Chef" ) {
salaryConstant = 0.5;}
else if (type == "Chef Assistant") {
salaryConstant = 0.40;}
else {
salaryConstant = 0.25;}
// there is 4 weeks 30 days thus (5 weekday+ 2 weekend day)+(5+ 2) +(5 +2) +(5 +2)+ 2(weekday)-->22weekday+8weekendday>>>
int sum=0;
for (int i = 0; i < 8; i++) { // 8 iteration for each weekend day.
int plate = r.nextInt(300)+201; // --> [200,500]
sum+=plate;
}
salary = ((50-20)*salaryConstant)*22+(salaryConstant*(sum-20*8));
return salary;
}
private static double baseSalaryMethod(String type) {
int baseSalary;
if(type =="Chef" ) {
baseSalary = 2000;
}
else if (type == "Chef Assistant") {
baseSalary = 1500;
}
else {
baseSalary = 1000;
}
return baseSalary;
}
}
//>>>dear instructor code works %100 correct, but if you want you can try yourself.