Last active
August 25, 2016 23:40
-
-
Save ofou/b096e2c34a075ddcebc1dee6a26aff3a to your computer and use it in GitHub Desktop.
Cuenta números pares si es que el número ingresado es positivo o impares si es que el número ingresado es negativo.
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
public class ParImpar{ | |
int numeroUsuario; | |
public int cuenta(int numeroUsuario){ | |
int contador = 0; | |
int suma = 0; | |
if (numeroUsuario<0){ | |
//suma negativos | |
while(contador!=numeroUsuario-1){ | |
if(contador % 2 == 0){ | |
contador = contador - 1; | |
} | |
else{ | |
suma = suma + contador; | |
contador = contador - 1; | |
} | |
} | |
return -1 * suma; | |
} | |
else{ | |
//suma los positivos | |
while(contador!=numeroUsuario+1){ | |
if (contador % 2 == 0) { | |
suma = suma + contador; | |
contador = contador + 1; | |
} | |
else{ | |
contador = contador + 1; | |
} | |
} | |
return suma; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment