-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6210 from patriciotrujilllo/main
Reto #44 - JavaScript
- Loading branch information
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
57 changes: 57 additions & 0 deletions
57
Retos/Reto #44 - ADIVINANZAS MATEMÁTICAS [Media]/javascript/patriciotrujilllo.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/* | ||
* Crea un juego interactivo por terminal en el que tendrás que adivinar | ||
* el resultado de diferentes | ||
* operaciones matemáticas aleatorias (suma, resta, multiplicación | ||
* o división de dos números enteros). | ||
* - Tendrás 3 segundos para responder correctamente. | ||
* - El juego finaliza si no se logra responder en ese tiempo. | ||
* - Al finalizar el juego debes mostrar cuántos cálculos has acertado. | ||
* - Cada 5 aciertos debes aumentar en uno el posible número de cifras | ||
* de la operación (cada vez en un operando): | ||
* - Preguntas 1 a 5: X (entre 0 y 9) operación Y (entre 0 y 9) | ||
* - Preguntas 6 a 10: XX (entre 0 y 99) operación Y (entre 0 y 9) | ||
* - Preguntas 11 a 15: XX operación YY | ||
* - Preguntas 16 a 20: XXX (entre 0 y 999) operación YY | ||
* ... | ||
*/ | ||
const readline = require('readline') | ||
const rl = readline.createInterface({ | ||
input: process.stdin, | ||
output: process.stdout | ||
}); | ||
|
||
let contador = 0, X = 1, Y = 1 | ||
|
||
const tribia = () => { | ||
|
||
const OPERACIONES = ['+', '-', '*', '/'] | ||
let a, b, resultado | ||
|
||
const operacion = OPERACIONES[Math.floor(Math.random() * 4)] | ||
a = Math.floor(Math.random() * (10 ** X)) | ||
b = Math.floor(Math.random() * (10 ** Y)) | ||
|
||
if (operacion === '+') resultado = a + b | ||
if (operacion === '-') resultado = a - b | ||
if (operacion === '*') resultado = a * b | ||
if (operacion === '/') resultado = a / b | ||
|
||
console.log(`Resuelva ${a}${operacion}${b}`) | ||
|
||
let timeoutId = setTimeout(() => { | ||
console.log('Tiempo agotado') | ||
rl.close() | ||
}, 3000) | ||
|
||
rl.question('Ingrese su respuesta: ', (userInput) => { | ||
clearTimeout(timeoutId) | ||
console.log(`la respuesta es ${userInput == resultado ? 'Correcta' : 'Incorrecta'}`) | ||
contador += 1 | ||
if (contador % 5 === 0) { | ||
X <= Y ? X += 1 : Y += 1 | ||
} | ||
console.log(`X:${X} e Y:${Y}`) | ||
tribia() | ||
}) | ||
} | ||
tribia() |