-
Notifications
You must be signed in to change notification settings - Fork 0
/
scriptExtremeLevel5.js
179 lines (124 loc) · 8.33 KB
/
scriptExtremeLevel5.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
// Extreme DAY 5 (LEVEL 5) CUSTOMER 1 (QUESTION 1) START
function extremeLevel5Q1(){
var input = document.getElementById("answerInput").value;
console.log(input)
var correct = 26.17;
if(input == correct){
document.getElementById("display").innerHTML=` <b> Roberta:</b> Thank you Math Wiz 🔢!!! <br><button onclick="extremeLevel5Q2()"> Customer 2 </button>`
document.getElementById("submitButton").innerHTML = `<button onclick="extremeLevel5Q2()"> Submit</button>`
}
else {
document.getElementById("display").innerHTML=`Try Again`
}
}
// Extreme DAY 5 (LEVEL 5) CUSTOMER 1 (QUESTION 1) END
// Extreme DAY 5 (LEVEL 5) CUSTOMER 2 (QUESTION 2) START
function extremeLevel5Q2(){
// Names
const name = ["Stanley", "Trevor", "Eva", "Poppy","Darren","Jake","Selena","Ariana","Leonard","Troy","Makenzie","Logan","Emma","Abigail","Keana","Isabella","Skyla","Zachary","Jude","Hailey","Emily","Kayla","Jessica","Carol","Alex","Noah","Sadie","Michael","Julia","Sarah","Ashley","Madison","Howard","Sheryl","Adriyel"]
const randomName = name[Math.floor(Math.random() * name.length)];
//Compliments
const compliments = ["Wow You're a SUPERSTAR ⭐!!!!", "Your Awesome ❤️!!!!","Thank you Math Wiz 🔢!!!","Thank you ❤️!!!!", " I appreaciate this❤️!!!!❤️"];
const randomcompliment = compliments[Math.floor(Math.random() * compliments.length)];
document.getElementById("questionTitle").innerHTML= `Customer 2 (Question 2)`
document.getElementById("question").innerHTML= `<b> ${randomName} </b> I have 22 pennies, 37 nickels, 49 dimes, 21 quarters, and 52 fifty-cents... . How much money do I have? `
var input = document.getElementById("answerInput").value;
console.log(input)
var correct = 38.22;
if(input == correct){
document.getElementById("display").innerHTML=` <b> ${randomName}:</b> ${randomcompliment} <br><button onclick="extremeLevel5Q3()"> Customer 3 </button>`
document.getElementById("submitButton").innerHTML = `<button onclick="extremeLevel5Q3()"> Submit</button>`
}
else {
document.getElementById("display").innerHTML=`Try Again`
}
}
// Extreme DAY 5 (LEVEL 5) CUSTOMER 2 (QUESTION 2) END
// Extreme DAY 5 (LEVEL 5) CUSTOMER 3 (QUESTION 3) START
function extremeLevel5Q3(){
// Names
const name = ["Stanley", "Trevor", "Eva", "Poppy","Darren","Jake","Selena","Ariana","Leonard","Troy","Makenzie","Logan","Emma","Abigail","Keana","Isabella","Skyla","Zachary","Jude","Hailey","Emily","Kayla","Jessica","Carol","Alex","Noah","Sadie","Michael","Julia","Sarah","Ashley","Madison","Howard","Sheryl","Adriyel"]
const randomName = name[Math.floor(Math.random() * name.length)];
//Compliments
const compliments = ["Wow You're a SUPERSTAR ⭐!!!!", "Your Awesome ❤️!!!!","Thank you Math Wiz 🔢!!!","Thank you ❤️!!!!", " I appreaciate this❤️!!!!❤️"];
const randomcompliment = compliments[Math.floor(Math.random() * compliments.length)];
document.getElementById("questionTitle").innerHTML= `Customer 3 (Question 3)`
document.getElementById("question").innerHTML= `<b> ${randomName} </b> I have 48 pennies, 30 nickels, 26 dimes, 25 quarters, and 54 fifty-cents... . How much money do I have? `
var input = document.getElementById("answerInput").value;
console.log(input)
var correct = 37.83;
if(input == correct){
document.getElementById("display").innerHTML=` <b> ${randomName}:</b> ${randomcompliment} <br><button onclick="extremeLevel5Q4()"> Customer 4 </button>`
document.getElementById("submitButton").innerHTML = `<button onclick="extremeLevel5Q4()"> Submit</button>`
}
else {
document.getElementById("display").innerHTML=`Try Again`
}
}
// Extreme DAY 5 (LEVEL 5) CUSTOMER 3 (QUESTION 3) END
// Extreme DAY 5 (LEVEL 5) CUSTOMER 4 (QUESTION 4) START
function extremeLevel5Q4(){
// Names
const name = ["Stanley", "Trevor", "Eva", "Poppy","Darren","Jake","Selena","Ariana","Leonard","Troy","Makenzie","Logan","Emma","Abigail","Keana","Isabella","Skyla","Zachary","Jude","Hailey","Emily","Kayla","Jessica","Carol","Alex","Noah","Sadie","Michael","Julia","Sarah","Ashley","Madison","Howard","Sheryl","Adriyel"]
const randomName = name[Math.floor(Math.random() * name.length)];
//Compliments
const compliments = ["Wow You're a SUPERSTAR ⭐!!!!", "Your Awesome ❤️!!!!","Thank you Math Wiz 🔢!!!","Thank you ❤️!!!!", " I appreaciate this❤️!!!!❤️"];
const randomcompliment = compliments[Math.floor(Math.random() * compliments.length)];
document.getElementById("questionTitle").innerHTML= `Customer 4 (Question 4)`
document.getElementById("question").innerHTML= `<b> ${randomName} </b> I have 23 pennies, 50 nickels, 33 dimes, 16 quarters, and 37 fifty-cents... . How much money do I have? `
var input = document.getElementById("answerInput").value;
console.log(input)
var correct = 28.53;
if(input == correct){
document.getElementById("display").innerHTML=` <b> ${randomName}:</b> ${randomcompliment} <br><button onclick="extremeLevel5Q5()"> Customer 5 </button>`
document.getElementById("submitButton").innerHTML = `<button onclick="extremeLevel5Q5()"> Submit</button>`
}
else {
document.getElementById("display").innerHTML=`Try Again`
}
}
// Extreme DAY 5 (LEVEL 5) CUSTOMER 4 (QUESTION 4) END
// Extreme DAY 5 (LEVEL 5) CUSTOMER 5 (QUESTION 5) START
function extremeLevel5Q5(){
// Names
const name = ["Stanley", "Trevor", "Eva", "Poppy","Darren","Jake","Selena","Ariana","Leonard","Troy","Makenzie","Logan","Emma","Abigail","Keana","Isabella","Skyla","Zachary","Jude","Hailey","Emily","Kayla","Jessica","Carol","Alex","Noah","Sadie","Michael","Julia","Sarah","Ashley","Madison","Howard","Sheryl","Adriyel"]
const randomName = name[Math.floor(Math.random() * name.length)];
//Compliments
const compliments = ["Wow You're a SUPERSTAR ⭐!!!!", "Your Awesome ❤️!!!!","Thank you Math Wiz 🔢!!!","Thank you ❤️!!!!", " I appreaciate this❤️!!!!❤️"];
const randomcompliment = compliments[Math.floor(Math.random() * compliments.length)];
document.getElementById("questionTitle").innerHTML= `Customer 5 (Question 5)`
document.getElementById("question").innerHTML= `<b> ${randomName} </b> I have 43 pennies, 46 nickels, 40 dimes, 41 quarters, and 19 fifty-cents... . How much money do I have? `
var input = document.getElementById("answerInput").value;
console.log(input)
var correct = 26.48;
if(input == correct){
document.getElementById("display").innerHTML=` <b> ${randomName}:</b> ${randomcompliment} <br><button onclick="extremeLevel5Q6()"> Customer 6 </button>`
document.getElementById("submitButton").innerHTML = `<button onclick="extremeLevel5Q6()"> Submit</button>`
}
else {
document.getElementById("display").innerHTML=`Try Again`
}
}
// Extreme DAY 5 (LEVEL 5) CUSTOMER 5 (QUESTION 5) END
// Extreme DAY 5 (LEVEL 5) CUSTOMER 6 (QUESTION 6) START
function extremeLevel5Q6(){
// Names
const name = ["Stanley", "Trevor", "Eva", "Poppy","Darren","Jake","Selena","Ariana","Leonard","Troy","Makenzie","Logan","Emma","Abigail","Keana","Isabella","Skyla","Zachary","Jude","Hailey","Emily","Kayla","Jessica","Carol","Alex","Noah","Sadie","Michael","Julia","Sarah","Ashley","Madison","Howard","Sheryl","Adriyel"]
const randomName = name[Math.floor(Math.random() * name.length)];
//Compliments
const compliments = ["Wow You're a SUPERSTAR ⭐!!!!", "Your Awesome ❤️!!!!","Thank you Math Wiz 🔢!!!","Thank you ❤️!!!!", " I appreaciate this❤️!!!!❤️"];
const randomcompliment = compliments[Math.floor(Math.random() * compliments.length)];
document.getElementById("questionTitle").innerHTML= `Customer 6 (Question 6)`
document.getElementById("question").innerHTML= `<b> ${randomName} </b> I have 19 pennies, 44 nickels, 22 dimes, 55 quarters, and 18 fifty-cents... . How much money do I have? `
var input = document.getElementById("answerInput").value;
console.log(input)
var correct = 27.34;
if(input == correct){
document.getElementById("display").innerHTML=` <b> ${randomName}:</b> ${randomcompliment} <br><button onclick="extremeLevel5Q7()"> Customer 7 </button>`
document.getElementById("submitButton").innerHTML = `<button onclick="extremeLevel5Q7()"> Submit</button>`
}
else {
document.getElementById("display").innerHTML=`Try Again`
}
}
// Extreme DAY 5 (LEVEL 5) CUSTOMER 6 (QUESTION 6) END