-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassignment4-part2
More file actions
332 lines (270 loc) · 10.4 KB
/
assignment4-part2
File metadata and controls
332 lines (270 loc) · 10.4 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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
// calculate the tuition of a college student (part 2)
import java.util.Scanner;
public class myTuition
{
// declare instance variables
double tuition;
int mealplanPrice, summerTuition, roomBoardPrice;
int credits, fallCredits, springCredits, extraCredits, summerCredits ;
int fullFee = 650*2, partFee = 55*2;
char type, summer, mealplan, roomBoard;
Scanner kb = new Scanner(System.in);
public static void Menu()
{
System.out.println("\n\t Enter 1 for Graduate ");
System.out.println("\n\t Enter 2 for Undergraduate Resident ");
System.out.println("\n\t Enter 3 for Undergraduate Non-Resident ");
System.out.println("\n\t Enter 4 for Undergraduate International ");
System.out.println("\n\t Enter Q to Quit ");
}
// start the first student type
public void Graduate()
{
System.out.println("How many fall credits are you taking? ");
fallCredits = kb.nextInt();
System.out.println("How many spring credits are you taking? ");
springCredits = kb.nextInt();
credits = fallCredits + springCredits;
// use if statements to call different types of grad students
System.out.println("What type of Grad student are you? ");
System.out.println("Resident = R, Non Resident = N, International = I, Quit = Q ");
type = kb.next().charAt(0);
System.out.println("Are you taking summer classes? ");
System.out.println("Y = yes, N = no");
summer = kb.next().charAt(0);
if (summer == 'Y') // if yes summer housing
{
System.out.println("How many summer credits? ");
summerCredits = kb.nextInt();
summerTuition = (325 * summerCredits);
}
else if (summer == 'N') // if no summer housing
{
summerTuition = 0;
}
System.out.println("Do you want a meal plan? (meal plan mandatory for residents) ");
System.out.println("Y = yes, N = no ");
mealplan = kb.next().charAt(0);
if (mealplan == 'Y') // if yes meal plan
{
mealplanPrice = 2400*2; // give price of meal plan
}
else if (mealplan == 'N') // if no meal plan
{
mealplanPrice = 0; // meal plan price is 0
}
// new if statement
if(type == 'R') // if resident graduate student
{
tuition = (510 * credits) + (110 * credits); // calculated from given tables
System.out.println("Cost for Graduate Resident Student per year = " + (tuition * 2) + summerTuition + mealplanPrice);
}
else if(type == 'N') // if non resident graduate student
{
tuition = (780 * credits) + (165 * credits); // calculated from given tables
System.out.println("Cost for Graduate Non-Resident Student per year = " + (tuition * 2) + summerTuition + mealplanPrice);
}
else if(type == 'I') // if international graduate student
{
tuition = (780 * credits) + (165 * credits); // calculated from given tables
System.out.println("Cost for Graduate International Student per year = " + (tuition * 2) + summerTuition + mealplanPrice);
}
else if (type == 'Q')
{
System.out.println("Quit ");
}
Menu();
}
// start undergraduate resident student method
public void UndergraduateRes()
{
System.out.println("How many fall credits are you taking? ");
fallCredits = kb.nextInt();
System.out.println("How many spring credits are you taking? ");
springCredits = kb.nextInt();
credits = fallCredits + springCredits;
System.out.println("Are you taking summer classes? ");
System.out.println("Y = yes, N = no");
summer = kb.next().charAt(0);
if (summer == 'Y') // if yes summer housing
{
System.out.println("How many summer credits? ");
summerCredits = kb.nextInt();
summerTuition = (325 * summerCredits);
}
else if (summer == 'N') // if no summer housing
{
summerTuition = 0;
}
System.out.println("Do you want a meal plan? (Meal plan mandatory for residents) ");
System.out.println("Y = yes, N = no ");
mealplan = kb.next().charAt(0);
if (mealplan == 'Y') // see above
{
mealplanPrice = 2400*2;
}
else if (mealplan == 'N')
{
mealplanPrice = 0;
}
System.out.println("Which room and board option do you want? ");
System.out.println("S = Single Bed, D = Double Bed ");
roomBoard = kb.next().charAt(0);
if (roomBoard == 'S') // single bedroom dorm
{
roomBoardPrice = 4750*2;
}
else if (roomBoard == 'D') // double bedroom dorm
{
roomBoardPrice = 3400*2;
}
extraCredits = credits - 18; // credits over 18
if(credits >= 24 && credits <= 36) // full time student
{
tuition = (4000*2) + fullFee;
}
else if (credits > 36) // student with more than 18 credits
{
tuition = (4000*2) + (325 * extraCredits) + fullFee;
}
else if (credits < 24) // part time student
{
tuition = (375 * credits) + (partFee*credits);
}
// print the cost of the semester along with room and board and summer tuition (if taking)
System.out.println("Cost for Undergraduate Resident student per year = " + (tuition) + mealplanPrice+ roomBoardPrice + summerTuition);
// recall the main menu
Menu();
}
// start undergraduate non resident student method
public void UndergraduateNonRes()
{
System.out.println("How many fall credits are you taking? ");
fallCredits = kb.nextInt();
System.out.println("How many spring credits are you taking? ");
springCredits = kb.nextInt();
credits = fallCredits + springCredits;
System.out.println("Are you taking summer classes? ");
System.out.println("Y = yes, N = no");
summer = kb.next().charAt(0);
if (summer == 'Y') // if yes for summer housing
{
System.out.println("How many summer credits are you taking? ");
summerCredits = kb.nextInt();
summerTuition = (475 * summerCredits);
}
else if (summer == 'N') // if no for summer housing
{
summerTuition = 0;
}
System.out.println("Do you want a meal plan? (Meal plan mandatory for residents) ");
System.out.println("Y = yes, N = no ");
mealplan = kb.next().charAt(0);
if (mealplan == 'Y') // see above
{
mealplanPrice = 2400*2;
}
else if (mealplan == 'N')
{
mealplanPrice = 0;
}
System.out.println("Which room and board option do you want? ");
System.out.println("S = Single Bed, D = Double Bed, N = No Room and Board ");
roomBoard = kb.next().charAt(0);
if (roomBoard == 'S') // single bedroom dorm
{
roomBoardPrice = 4750*2;
}
else if (roomBoard == 'D') // double bedroom dorm
{
roomBoardPrice = 3400*2;
}
else if (roomBoard == 'N') // no room/board
{
roomBoardPrice = 0;
}
extraCredits = credits - 18; // credits over 18
if(credits >= 24 && credits <= 36) // full time stduent
{
tuition = (5850*2) + fullFee;
}
else if (credits > 36) // student with more than 18 credits
{
tuition = (5850*2) + (475 *extraCredits) + fullFee;
}
else if (credits < 24) // part time student
{
tuition = (525 * credits) + (partFee*credits);
}
// print the cost of the semester along with room and board and summer tuition (if taking)
System.out.println("Cost for Undergraduate Non-Resident student per year = " + (tuition) + mealplanPrice + roomBoardPrice + summerTuition);
// recall the main menu
Menu();
}
// start undergraduate international student method
public void UndergraduateInt()
{
System.out.println("How many fall credits are you taking? ");
fallCredits = kb.nextInt();
System.out.println("How many spring credits are you taking? ");
springCredits = kb.nextInt();
credits = fallCredits + springCredits;
System.out.println("Are you taking summer classes? ");
System.out.println("Y = yes, N = no");
summer = kb.next().charAt(0);
if (summer == 'Y') // if yes for summer classes
{
System.out.println("How many summer credits are you taking? ");
summerCredits = kb.nextInt();
summerTuition = (625 * credits);
}
else if (summer == 'N') // if no for summer classes
{
summerTuition = 0;
}
System.out.println("Do you want a meal plan? (Meal plan mandatory for residents) ");
System.out.println("Y = yes, N = no ");
mealplan = kb.next().charAt(0);
if (mealplan == 'Y') // see above
{
mealplanPrice = 2400*2;
}
else if (mealplan == 'N')
{
mealplanPrice = 0;
}
System.out.println("Which room and board option do you want? ");
System.out.println("S = Single Bed, D = Double Bed, N = No Room and Board ");
roomBoard = kb.next().charAt(0);
if (roomBoard == 'S') // single bedroom dorm
{
roomBoardPrice = 7500*2;
}
else if (roomBoard == 'D') // double bedroom dorm
{
roomBoardPrice = 4000*2;
}
else if (roomBoard == 'N') // no room/board
{
roomBoardPrice = 0;
}
extraCredits = credits - 18; // credits over 18
if(credits >= 24 && credits <= 36) // full time student
{
tuition = (7550*2) + fullFee;
}
else if (credits > 36) // student with more than 18 credits
{
tuition = (7555*2) + (625 * extraCredits) + fullFee;
}
else if (credits < 24) // part time student
{
tuition = (675 * credits) + (partFee*credits);
}
// print the cost of the semester along with room and board and summer tuition (if taking)
System.out.println("Cost for Undergraduate International student per year = " + (tuition) + mealplanPrice + roomBoardPrice + summerTuition);
// recall the main menu
Menu();
}
// costSemester/roomBoardPrice/summerTuition values/formulas ALL from given tables!!!!!
}