You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ao colocar o While da seguinte maneira, ele entrou em um loop infinito. Por que ?
public class MaiorEMenor {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int numero;
//int maior = 0;
int count = 0;
do {
System.out.println("Digite um número: ");
numero = scan.nextInt();
count = count ++;
} while(count <= 5);
}
}
The text was updated successfully, but these errors were encountered:
Faça um programa que leia 5 números e informe o maior número e a média desses
números.
*/
public class MaiorEMenor {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int numero;
int maior = 0;
int soma = 0;
int count = 0;
do {
System.out.println("Digite um número: ");
numero = scan.nextInt();
soma = soma + numero;
if (numero > maior){
maior = numero;
}
count = count ++;
} while(count < 5);
System.out.println("O número maior é: " + maior);
System.out.println("A média é: " + (soma/5)) ;
}
Ao colocar o While da seguinte maneira, ele entrou em um loop infinito. Por que ?
public class MaiorEMenor {
}
The text was updated successfully, but these errors were encountered: