Ejercicio05.java 477 Bytes
Newer Older
Silvia Barrientos committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import java.util.Scanner;


public class Ejercicio05 {
    public static void main(String[] args) {
        Scanner entrada = new Scanner(System.in);
        System.out.print("Ingrese un numero: ");
        int numero = entrada.nextInt();
        entrada.close();
        if(numero % 2 == 0){
            System.out.printf("El numero %d es divisible por 2", numero);
        }else{
            System.out.printf("El numero %d no es divisible por 2", numero);
        }
    }
}