Last active
October 14, 2015 14:51
-
-
Save valchaqui/4fbf74044fd429694a4a to your computer and use it in GitHub Desktop.
Aula Black While
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 idades { | |
public static void main(String [] x) { | |
int idade, qtdIdade=0, soma=0, maiorIdade=0, maior=0, i; | |
float media; | |
Scanner leia = new Scanner(System.in); | |
do{ | |
System.out.print ("Escreva a idade: "); | |
idade = leia.nextInt(); | |
qtdIdade++; | |
soma=soma+idade; | |
if(idade>maiorIdade){ | |
maiorIdade=idade; | |
} | |
} | |
while(idade>0 && idade<200); | |
media=soma/(qtdIdade-1); | |
System.out.print("\n\nA media das idades é = " +media); | |
System.out.print("\nA maior idade é = " +maiorIdade+ "\n\n"); | |
for(i=0; i<(qtdIdade-1);i++){ | |
System.out.print("\n\nDigite novamente cada idade: "); | |
idade = leia.nextInt(); | |
if(idade>media){ | |
maior++; | |
} | |
} | |
System.out.print ("\n\nExiste/Existem " +maior+ " idade(s) maior(es) que a média\n\n\n"); | |
} | |
} | |
} | |
while(idade>0 && idade<200); | |
media=soma/(qtdIdade-1); | |
System.out.print("\n\nA media das idades é = " +media); | |
System.out.print("\nA maior idade é = " +maiorIdade+ "\n\n\n\n"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment