-
Notifications
You must be signed in to change notification settings - Fork 267
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
implementação de código para pegar dados do usuário e correção de val…
…idação
- Loading branch information
1 parent
b16d4df
commit ccaa719
Showing
2 changed files
with
45 additions
and
18 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,28 +1,53 @@ | ||
const numerosPalidromos = []; | ||
function palindromos(min, max) { | ||
let valueMin = min; | ||
let valueMax = max; | ||
const numerosPalidromos = []; | ||
for (; min <= max; min++) { | ||
const numInverso = +min.toString().split("").reverse().join(""); | ||
if (min === numInverso) { | ||
numerosPalidromos.push(min); | ||
} | ||
} | ||
console.log( | ||
`os números palindromos entre ${valueMin} e ${valueMax} são : ${numerosPalidromos}` | ||
); | ||
return numerosPalidromos; | ||
} | ||
|
||
function verificacao(min, max) { | ||
if (typeof min !== "number" || typeof max !== "number") { | ||
function verificacao(value) { | ||
if (isNaN(value)) { | ||
console.log("Coloque apenas valores númericos"); | ||
} else if (min < 1 || max < 1) { | ||
} else if (value < 1) { | ||
console.log("Adicione apenas valores positivos ou maior que 0"); | ||
} else if (min >= max) { | ||
console.log( | ||
"O valor mínimo não pode ser maior ou igual ao valor máximo" | ||
); | ||
} else if (!(Number.isInteger(min) && Number.isInteger(max))) { | ||
} else if (!Number.isInteger(value)) { | ||
console.log("Adicione apenas números inteiros"); | ||
} else { | ||
palindromos(min, max); | ||
return true; | ||
} | ||
} | ||
console.log(verificacao(1, 50)); | ||
console.log(numerosPalidromos); | ||
|
||
const readline = require("node:readline"); | ||
const rl = readline.createInterface({ | ||
input: process.stdin, | ||
output: process.stdout, | ||
}); | ||
|
||
rl.question("Informe o valor minimo: ", (min) => { | ||
if (!verificacao(+min)) { | ||
rl.close(); | ||
} else { | ||
rl.question("Informe o valor máximo: ", (max) => { | ||
if (!verificacao(+max)) { | ||
rl.close(); | ||
} else if (min >= max) { | ||
console.log( | ||
"O valor mínimo não pode ser maior ou igual ao valor máximo" | ||
); | ||
|
||
} else { | ||
palindromos(+min, +max); | ||
} | ||
rl.close(); | ||
}); | ||
} | ||
}); |