-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculator.js
298 lines (254 loc) · 11.3 KB
/
calculator.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
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
// Append number to input field
function appendNumber(number) {
const input = document.getElementById('result-input');
input.value += number;
// No need to focus on the input field
}
// Append negative sign
function appendNegative() {
const input = document.getElementById('result-input');
if (!input.value.includes('-')) {
input.value = '-' + input.value;
}
// No need to focus on the input field
}
// Backspace function
function backspace() {
const input = document.getElementById('result-input');
input.value = input.value.slice(0, -1);
// No need to focus on the input field sss
}
// Clear input field
function clearResult() {
document.getElementById('result-input').value = '';
document.getElementById('message').textContent = '';
}
// Check result on 'Enter' button click
function checkResult() {
const random1 = parseInt(document.getElementById('random1').textContent);
const random2 = parseInt(document.getElementById('random2').textContent);
const operation = document.getElementById('operation').textContent;
const userResult = parseInt(document.getElementById('result-input').value);
let correctResult;
if (isNaN(random1) || isNaN(random2)) {
document.getElementById('message').textContent = 'Please generate numbers first!';
return;
}
try {
if (operation === '+') {
correctResult = random1 + random2;
} else if (operation === '-') {
correctResult = random1 - random2;
} else if (operation === 'x') {
correctResult = random1 * random2;
}
if (userResult === correctResult) {
document.getElementById('message').textContent = 'Bravo!';
generateRandomNumbers(); // Generate new numbers after a correct answer
clearResult();
} else {
document.getElementById('message').textContent = 'Wrong! Try again.';
}
} catch (error) {
console.error("Error calculating result:", error);
}
}
// Allow keyboard input without duplicating numbers
document.addEventListener('keydown', function(event) {
const input = document.getElementById('result-input');
const allowedKeys = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', 'Backspace', 'Enter'];
if (allowedKeys.includes(event.key)) {
event.preventDefault(); // Prevent default action to avoid duplicating the input
if (event.key >= '0' && event.key <= '9') {
input.value += event.key;
} else if (event.key === '-') {
appendNegative();
} else if (event.key === 'Backspace') {
backspace();
} else if (event.key === 'Enter') {
checkResult();
}
input.focus();
}
});
// Generate random numbers and display them
function generateRandomNumbers() {
try {
const random1 = getRandomNumber();
const random2 = getRandomNumber();
const operation = document.getElementById('operation-select').value;
// If numbers are successfully generated, display them
document.getElementById('random1').textContent = random1 || '';
document.getElementById('random2').textContent = random2 || '';
document.getElementById('operation').textContent = operation || '';
} catch (error) {
console.error("Error generating random numbers:", error);
}
}
// Get a random number based on user selection
function getRandomNumber() {
const range = document.getElementById('range-select').value;
const allowNegative = document.getElementById('allow-negative').checked;
const [min, max] = range.split('-').map(Number);
let number = Math.floor(Math.random() * (max - min + 1)) + min;
if (allowNegative && Math.random() > 0.5) {
number = -number;
}
return number;
}
function checkResult() {
const random1 = parseInt(document.getElementById('random1').textContent);
const random2 = parseInt(document.getElementById('random2').textContent);
const operation = document.getElementById('operation').textContent;
const userResult = parseInt(document.getElementById('result-input').value);
let correctResult;
if (isNaN(random1) || isNaN(random2)) {
return;
}
try {
if (operation === '+') {
correctResult = random1 + random2;
} else if (operation === '-') {
correctResult = random1 - random2;
} else if (operation === 'x') {
correctResult = random1 * random2;
}
const resultInput = document.getElementById('result-input');
const showAnswerBtn = document.getElementById('show-answer-btn');
const correctAnswerDisplay = document.getElementById('correct-answer');
if (userResult === correctResult) {
resultInput.classList.remove('wrong'); // Yanlış ise kaldır
generateRandomNumbers();
clearResult();
showAnswerBtn.style.display = 'none'; // Cevabı gör butonunu sakla
correctAnswerDisplay.style.display = 'none'; // Doğru cevabı sakla
} else {
resultInput.classList.add('wrong'); // Kırmızı border ve titreme efekti
showAnswerBtn.style.display = 'flex'; // Cevabı gör butonunu göster
resultInput.value = ''; // Yanıtı temizle
}
// Doğru cevabı sakla
correctAnswerDisplay.textContent = `Doğru Cevap: ${correctResult}`;
} catch (error) {
console.error("Error calculating result:", error);
}
}
// Doğru cevabı saklamak için bir değişken tanımlayın
let correctResult = null;
// Kullanıcı sonuçları kontrol eder
function checkResult() {
const random1 = parseInt(document.getElementById('random1').textContent);
const random2 = parseInt(document.getElementById('random2').textContent);
const operation = document.getElementById('operation').textContent;
const userResult = parseInt(document.getElementById('result-input').value);
// Rastgele sayıları kontrol et
if (isNaN(random1) || isNaN(random2)) {
return;
}
try {
// Doğru sonucu hesapla
if (operation === '+') {
correctResult = random1 + random2;
} else if (operation === '-') {
correctResult = random1 - random2;
} else if (operation === 'x') {
correctResult = random1 * random2;
}
const resultInput = document.getElementById('result-input');
const showAnswerBtn = document.getElementById('show-answer-btn');
const correctAnswerDisplay = document.getElementById('correct-answer');
// Kullanıcı doğru yanıt verirse
if (userResult === correctResult) {
resultInput.classList.remove('wrong'); // Yanlış mesajı kaldır
generateRandomNumbers(); // Yeni sayılar oluştur
clearResult(); // Giriş alanını temizle
showAnswerBtn.style.display = 'none'; // Cevabı gör butonunu gizle
correctAnswerDisplay.style.display = 'none'; // Doğru cevabı gizle
} else {
resultInput.classList.add('wrong'); // Kırmızı border ve titreme efekti
showAnswerBtn.style.display = 'flex'; // Cevabı gör butonunu göster
resultInput.value = ''; // Yanıtı temizle
}
// Doğru cevabı sakla
correctAnswerDisplay.textContent = `Doğru Cevap: ${correctResult}`;
} catch (error) {
console.error("Error calculating result:", error);
}
}
// Cevabı gösteren butona tıklandığında
function showAnswer() {
const correctAnswerDisplay = document.getElementById('correct-answer');
correctAnswerDisplay.style.display = 'block'; // Doğru cevabı göster
correctAnswerDisplay.textContent = `Doğru Cevap: ${correctResult}`; // Doğru cevabı ayarla
}
// Cevabı gör butonuna click event ekle
document.getElementById('show-answer-btn').addEventListener('click', showAnswer);
// Yeni rastgele sayılar oluştur
function generateRandomNumbers() {
const random1 = getRandomNumber();
const random2 = getRandomNumber();
const operation = document.getElementById('operation-select').value;
document.getElementById('random1').textContent = random1 || '';
document.getElementById('random2').textContent = random2 || '';
document.getElementById('operation').textContent = operation || ''; // İşlem butonunu güncelle
// Butonları başlangıçta sakla
document.getElementById('show-answer-btn').style.display = 'none';
document.getElementById('correct-answer').style.display = 'none';
}
// İşlemler için bir dizi tanımlayın
const operations = ['+', '-', 'x']; // Kullanıcı tarafından tanımlanan işlemler
let currentOperationIndex = 0; // Mevcut işlem indexi
// İşlem butonuna tıklandığında çağrılan fonksiyon
function changeOperation() {
currentOperationIndex = (currentOperationIndex + 1) % operations.length; // Sıradaki işleme geç
const operationButton = document.getElementById('operation');
const operationSelect = document.getElementById('operation-select');
// Yeni işlemi butona ve seçim alanına yerleştir
operationButton.textContent = operations[currentOperationIndex];
operationSelect.value = operations[currentOperationIndex]; // Seçim alanındaki değeri güncelle
}
// İşlem butonuna tıklandığında değiştir
document.getElementById('operation').addEventListener('click', changeOperation);
// Kullanıcı sonuçları kontrol eder
function checkResult() {
const random1 = parseInt(document.getElementById('random1').textContent);
const random2 = parseInt(document.getElementById('random2').textContent);
const operation = operations[currentOperationIndex]; // Güncel işlemi al
const userResult = parseInt(document.getElementById('result-input').value);
let correctResult;
// Rastgele sayıları kontrol et
if (isNaN(random1) || isNaN(random2)) {
return;
}
try {
// Doğru sonucu hesapla
if (operation === '+') {
correctResult = random1 + random2;
} else if (operation === '-') {
correctResult = random1 - random2;
} else if (operation === 'x') {
correctResult = random1 * random2;
}
const resultInput = document.getElementById('result-input');
const showAnswerBtn = document.getElementById('show-answer-btn');
const correctAnswerDisplay = document.getElementById('correct-answer');
// Kullanıcı doğru yanıt verirse
if (userResult === correctResult) {
resultInput.classList.remove('wrong'); // Yanlış mesajı kaldır
generateRandomNumbers(); // Yeni sayılar oluştur
clearResult(); // Giriş alanını temizle
showAnswerBtn.style.display = 'none'; // Cevabı gör butonunu gizle
correctAnswerDisplay.style.display = 'none'; // Doğru cevabı gizle
} else {
resultInput.classList.add('wrong'); // Kırmızı border ve titreme efekti
showAnswerBtn.style.display = 'flex'; // Cevabı gör butonunu göster
resultInput.value = ''; // Yanıtı temizle
}
// Doğru cevabı sakla
correctAnswerDisplay.textContent = `Doğru Cevap: ${correctResult}`;
} catch (error) {
console.error("Error calculating result:", error);
}
}
// Initialize the calculator
window.onload = generateRandomNumbers;