Created
October 28, 2015 13:41
-
-
Save valchaqui/91275c3098a6c510fc56 to your computer and use it in GitHub Desktop.
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.Scanner; | |
public class vetor { | |
public static void main(String args []){ | |
Scanner entrada = new Scanner(System.in); | |
float[] num = new float[5]; | |
int i, qtd=0; | |
float soma=0, media, maior=num[0]; | |
System.out.print("\n\n******Vetor*******\n\n"); | |
for(i=0;i<5;i++) { | |
System.out.print("Digite o " +(i+1)+ ".o numero: "); | |
num[i] = entrada.nextFloat(); | |
soma=soma+num[i]; | |
} | |
media=soma/5; | |
System.out.println("\n\nA média dos números é "+media); | |
for(i=0;i<5;i++) { | |
if(num[i]>maior){ | |
maior=num[i]; | |
} | |
if(num[i]>media){ | |
qtd++; | |
System.out.print("\nO número " +num[i]+ " é maior que a média."); | |
} | |
} | |
System.out.print("\nExistem "+qtd+ " números acima da média!"); | |
System.out.print("\nO número "+maior+" é o maior."); | |
System.out.print("\n\n\n"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment