Created
October 14, 2015 14:50
-
-
Save renoirtech/7cd53cb090f4210a7691 to your computer and use it in GitHub Desktop.
Laboratorio de Programação - WHILE (14/10/2015)
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
import java.util.*; | |
public class mediaIdade { | |
public static void main(String [] x) { | |
int idade,media, soma=0, qtdIdade=0, maiorIdade=0, i=0, qtdMaiorMedia=0; | |
Scanner leia = new Scanner(System.in); | |
System.out.print("\nDigite a idade:\n"); | |
idade = leia.nextInt(); | |
while ((idade>0) && (idade<200)){ | |
soma = soma + idade; | |
qtdIdade++; | |
if(idade>maiorIdade) { | |
maiorIdade=idade; | |
} | |
System.out.print("\nDigite a idade:\n"); | |
idade = leia.nextInt(); | |
} | |
media = soma/qtdIdade; | |
System.out.print("\n\nA media é: " + media + ".\n"); | |
for (i=0; i<qtdIdade; i++) { | |
System.out.print("\n\nRepita a idade:\n"); | |
idade = leia.nextInt(); | |
if(idade>media) { | |
qtdMaiorMedia++; | |
} | |
} | |
System.out.print("\n+--------------RESUMO DA OPERA----------------+\n"); | |
System.out.print("| A media é: " + media +" |\n"); | |
System.out.print("| A maior idade é: " + maiorIdade + " |\n"); | |
System.out.print("| Quantidade de idades superiores à média: " + qtdMaiorMedia + " |\n"); | |
System.out.print("+---------------------------------------------+\n\n"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment