-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.cs
More file actions
228 lines (167 loc) · 5.92 KB
/
Form1.cs
File metadata and controls
228 lines (167 loc) · 5.92 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
using System;
using System.Drawing;
using System.Windows.Forms;
namespace TimedMathQuiz
{
public partial class Form1 : Form
{
// Create a Random object called randomizer
// to generate random numbers.
Random randomizer = new Random();
// variables for the addition operation
int addend1;
int addend2;
// variables for the substraction operation
int minued;
int subtrahend;
// variables for the multiplication operation
int multiplicand;
int multiplier;
// varialbes for the division operation
int dividend;
int divisor;
int timeLeft;
public void StartTheQuiz()
{
// get random numbers for the addition
// convert to string
// set in the text Labels and sum
addend1 = randomizer.Next(51);
addend2 = randomizer.Next(51);
plusLeftLabel.Text = addend1.ToString();
plusRightLabel.Text = addend2.ToString();
sum.Value = 0;
// get random numbers for the substraction
// convert to string
// set in the text Labels and calculate the difference
minued = randomizer.Next(1, 101);
subtrahend = randomizer.Next(1, minued);
minusLeftLabel.Text = minued.ToString();
minusRightLabel.Text = subtrahend.ToString();
difference.Value = 0;
// get random numbers for the multiplication
// convert to string
// set in the text Labels and get the product
multiplicand = randomizer.Next(2, 11);
multiplier = randomizer.Next(2, 11);
timesLeftLabel.Text = multiplicand.ToString();
timesRightLabel.Text = multiplier.ToString();
product.Value = 0;
// get random numbers for the division
// convert to string
// set in the text Labels and quotient
divisor = randomizer.Next(2, 11);
int temporaryQuotient = randomizer.Next(2, 11);
dividend = divisor * temporaryQuotient;
dividedLeftLabel.Text = dividend.ToString();
dividedRightLabel.Text = divisor.ToString();
quotient.Value = 0;
// Reset styles
sum.BackColor = Color.White;
difference.BackColor = Color.White;
product.BackColor = Color.White;
quotient.BackColor = Color.White;
timeLabel.BackColor = Color.White;
// Start the timer.
timeLeft = 30;
timeLabel.Text = "30 seconds";
timer1.Start();
}
private bool CheckTheAnswer()
// Check the answers and return true
// if the user answered correctly
{
if ((addend1 + addend2 == sum.Value)
&& (minued - subtrahend == difference.Value)
&& (multiplicand * multiplier == product.Value)
&& (dividend / divisor == quotient.Value))
return true;
else return false;
}
private void formStyles()
{
// Class intended to keep and change the
// values of the colors throughout the form depending
// on the time and answered
timeLabel.BackColor = Color.Black;
timeLabel.ForeColor = Color.White;
if (timeLeft < 5)
{
timeLabel.BackColor = Color.Red;
}
}
public Form1()
{
InitializeComponent();
currentTime.Text = DateTime.Now.ToString("dd/MM/yyyy");
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void label1_Click(object sender, EventArgs e)
{
}
private void label2_Click(object sender, EventArgs e)
{
}
private void label3_Click(object sender, EventArgs e)
{
}
private void label3_Click_1(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
StartTheQuiz();
startButton.Enabled = false;
}
private void timer1_Tick_1(object sender, EventArgs e)
{
if (CheckTheAnswer())
{
timer1.Stop();
MessageBox.Show("You got all the answers right.");
startButton.Enabled = true;
}
else if (timeLeft > 0)
{
timeLeft = timeLeft - 1;
timeLabel.Text = timeLeft + " seconds";
formStyles();
}
else
{
timer1.Stop();
timeLabel.Text = "Time's up";
sum.Value = addend1 + addend2;
difference.Value = minued - subtrahend;
product.Value = multiplicand * multiplier;
quotient.Value = dividend / divisor;
startButton.Enabled = true;
}
}
private void answer_Enter(object sender, EventArgs e)
{
NumericUpDown answerBox = sender as NumericUpDown;
if (answerBox != null)
{
int lengthOfAnswer = answerBox.Value.ToString().Length;
answerBox.Select(0, lengthOfAnswer);
}
}
private void correct_Answer(object sender, EventArgs e)
{
NumericUpDown inputBox = sender as NumericUpDown;
if (inputBox != null)
{
inputBox.BackColor = Color.White;
}
}
private void currentTime_Click(object sender, EventArgs e)
{
}
private void label1_Click_1(object sender, EventArgs e)
{
}
}
}