Ex) Write an algorithm that calculates the average of the numbers entered by the user, if they are even. Finish reading if the user types zero.
I did so:
public static void main(String[] args){
Scanner x = new Scanner (System.in);
System.out.println("Digite um número: ");
int numero = x.nextInt();
while(numero < 0 | numero > 0){
System.out.println("Digite outro número");
/*
*imagino que eu tenha que usar outra variável, mas isso prejudicaria
*no inicio do meu while, que diz q a variável número não pode ser 0.
*/
numero = x.nextInt();
/*
*existe maneira de guardar vários valores em uma mesma variável?(imagino
*que seja inviável).
*/
Can anyone tell me how the algorithm works while?