Ejercicio05.java 481 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import java.util.Scanner;
/**
 * Ejercicio05
 */
public class Ejercicio05 {
    public static void main(String[] args) {
        Scanner teclado = new Scanner(System.in);
        System.out.println("Ingrese un numero");
        int numero = teclado.nextInt();
        teclado.close();
        if(numero%2 == 0){
            System.out.println("Es divisible entre 2");
        }else{
            System.out.println("No es divisible entre 2");
        }
    }
    
}