-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassignment8.js
273 lines (192 loc) · 5.88 KB
/
assignment8.js
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
// Assignment: Conditional statements
// Question 1: Grade Classification
// Write a program that takes a student's grade (as a percentage) and uses a "switch" case statement to classify it into a letter grade (A, B, C, D, F). The grading scale is:
// A: 90% and above
// B: 80% to 89%
// C: 70% to 79%
// D: 60% to 69%
// F: Below 60%
// Display the letter grade to the user.
// let percentage = 98
// switch(true){
// case (percentage>=90):
// console.log("A")
// break;
// case (percentage>=80):
// console.log("B")
// break;
// case (percentage>=70):
// console.log("C")
// break;
// case (percentage>=60):
// console.log("D")
// break;
// default:
// console.log("F")
// }
// Question 2: Traffic Light Control
// Create a program that simulates a traffic light system. The user inputs a color code (R for Red, Y for Yellow, G for Green), and the program uses a "switch" case statement to output the appropriate action:
// Red: "Stop"
// Yellow: "Get Ready"
// Green: "Go"
// For any other input, display "Invalid color code."
// let colour = "Y"
// switch (true){
// case (colour == "R"):
// console.log("Stop")
// break;
// case (colour=="Y"):
// console.log("Get Ready")
// break;
// case (colour=="G"):
// console.log("Go")
// break;
// default:
// console.log("Invalid color code")
// }
// Question 3: Age Group Classification
// Create a program that classifies a person's age into different life stages. Ask the user to input their age and use if, else if, and else statements to classify and display:
// "Child" for ages 0 to 12
// "Teenager" for ages 13 to 19
// "Adult" for ages 20 to 64
// "Senior" for ages 65 and above
// Display "Invalid age" for any negative age values.
// function age(a){
// if (a>=0){
// if(a<=12){
// return "Child"
// }
// if(a<=19){
// return "Teenager"
// }
// if(a<=64){
// return "Adult"
// }
// }
// else if(a>=65){
// return "Senior"
// }
// else{
// return "Invalid age"
// }
// }
// let classify=age(68)
// console.log(classify)
// Question 4: Shipping Calculator
// Create a program that calculates shipping costs based on the shipping method selected. The user inputs a method code (S for Standard, E for Express, O for Overnight), and the program uses a "switch" case statement to display the cost:
// Standard: Rs.5
// Express: Rs.10
// Overnight: Rs.20
// For any other input, display "Invalid shipping method."
// let code="S"
// switch(true){
// case (code=="S"):
// console.log("Rs.5")
// break;
// case (code=="E"):
// console.log("Rs.10")
// break;
// case (code=="O"):
// console.log("Rs.20")
// break;
// default:
// console.log("Invalid shipping method")
// }
// Question 5: Subscription Plans
// Write a program that determines the monthly cost of a subscription plan based on the user's choice. The options are:
// 1. Basic Rs.9.99 per month
// 2. Standard Rs.14.99 per month
// 3. Premium Rs.19.99 per month
// The user inputs a number corresponding to their choice, and the "switch" case statement displays the monthly cost. If the number is not between 1 and 3, display "Invalid plan."
// let plan="Base"
// switch(true){
// case (plan=="Base"):
// console.log("Rs.9.99 per month")
// break;
// case (plan=="Standard"):
// console.log("Rs.14.99 per month")
// break;
// case (plan=="Premium"):
// console.log("Rs.19.99 per month")
// break;
// default:
// console.log("Invalid plan")
// }
// let percentage=78
// switch(true){
// case(percentage>=90):
// console.log("A")
// break;
// case(percentage>=80):
// console.log("B")
// break;
// case(percentage>=70):
// console.log("C")
// break;
// case(percentage>=60):
// console.log("D")
// break;
// default:
// console.log("F")
// }
// let code="S"
// switch(true){
// case (code=="R"):
// console.log("Stop")
// break;
// case(code=="Y"):
// console.log("Get Ready")
// break;
// case(code=="G"):
// console.log("Go")
// break;
// default:
// console.log("Invalid colour code")
// }
// function personsAge(a){
// if(a>=0){
// if(a<=12){
// return "Child"
// }
// if(a<=19){
// return "Teenager"
// }
// if(a<=64){
// return "Adult"
// }
// else if(a>=65){
// return "Senior"
// }
// else{
// return "Invalid Age"
// }}}
// let age = personsAge(56)
// console.log(age)
// let code="E"
// switch (true){
// case(code=="S"):
// console.log("Rs.5")
// break;
// case(code=="E"):
// console.log("Rs.10")
// break;
// case(code=="O"):
// console.log("Rs.20")
// break;
// default:
// console.log("Invalid shipping method")
// }
// let plan="Standard"
// switch(true){
// case(plan=="Basic"):
// console.log("Rs.9.99 per month")
// break;
// case(plan=="Standard"):
// console.log("Rs.14.99 per month")
// break;
// case (plan=="Premium"):
// console.log("Rs.19.99 per month")
// break;
// default:
// console.log("Invalid plan")
// }