Last active
October 24, 2016 13:42
-
-
Save renoirtech/a6fc8a7106fdb7210712b59729de9062 to your computer and use it in GitHub Desktop.
Escreva um algoritmo que leia 10 valores e mostre o maior valor lido.
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
/* | |
* Autor: Renoir dos Reis | |
* Licensa: Aberto a todos. | |
* Feito sob demanda por solicitação de Marquinho da dupla Henrique e Hernane | |
*/ | |
//DECLARAÇÃO DE VARIÁVEIS | |
var cont = 0; //tipo inteiro; | |
var cont1 = 0; | |
var valor = 0; | |
var valores = [] //tipo vetor; | |
var maior = 0; //tipo inteiro | |
//BLOCO DE PROCESSAMENTO | |
for (cont = 1; cont <= 10; cont++) { | |
//Obtendo o valor de entrada do usuário | |
valor = prompt('Por favor, entre o valor de número ' + cont + '.',valores[cont]); | |
//Parseando a string da resposta para inteiro. | |
valor = parseInt(valor); | |
//Inserindo o mesmo no vetor de valores; | |
valores.push(valor); | |
} | |
for (cont1 = 1; cont1 <= valores.length; cont1++) { | |
console.log(valores[cont1]); | |
console.log('O valor ' + valores[cont1] + ' é maior que ' + maior + '?'); | |
if(valores[cont1] >= maior) { | |
maior = valores[cont1]; | |
} | |
console.log(valores[cont1] >= maior); | |
} | |
//RETORNO DE INFORMAÇÃO | |
console.log('\n'); | |
console.log('O maior valor é: ' + maior + '.'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment