Last active
October 21, 2015 16:07
-
-
Save renoirtech/dbd003857fec02749a04 to your computer and use it in GitHub Desktop.
Laboratório de Programação - Marcelo Black - Desafio Media - 21/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 desafioMedia { | |
public static void main(String [] x) { | |
float numero, somaNum, media; | |
int i, contagem; | |
Scanner leia = new Scanner(System.in); | |
System.out.print ("\nBem vindo ao desafio das médias: \n"); | |
somaNum = 0; | |
for (i=1; i<6; i++) { | |
do{ | |
System.out.print ("Escreva o: " + i + "º numero:\n"); | |
numero = leia.nextFloat(); | |
if (numero<0) { | |
System.out.print ("Você digitou um número inválido, vamos começar novamente:\n"); | |
} | |
}while(numero<0); | |
somaNum = somaNum + numero; | |
} | |
// processamento de dados | |
media = somaNum/5; | |
// resultado | |
System.out.print ("A media dos números é :" + media + ".\n"); | |
System.out.print ("Fim de programa.\n"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment