Commit cff5be5a by Juan Cristaldo

Ejercicio 5 Realizado

parent 4f7e2f08
...@@ -14,8 +14,6 @@ public class Ejercicio04 { ...@@ -14,8 +14,6 @@ public class Ejercicio04 {
public static void main(String[] args) { public static void main(String[] args) {
// Se puede introducir cualquier nombre
Scanner entrada = new Scanner(System.in); Scanner entrada = new Scanner(System.in);
System.out.println("***Operaciones***"); System.out.println("***Operaciones***");
System.out.println("Ingrese su nombre"); System.out.println("Ingrese su nombre");
......
/*
* 5. Lee un número por teclado e indica si es divisible entre 2 (resto = 0). Si no lo es,
* también debemos indicarlo.
*/
package javaapplication;
import java.util.Scanner;
/**
*
* @author Juan Cristaldo
*/
public class Ejercicio05 {
public static void main(String[] args) {
Scanner entrada = new Scanner(System.in);
System.out.println("***Operacion si es divisible entre 2***");
System.out.println("Ingrese un número");
int numero = entrada.nextInt();
if (numero % 2 == 0) {
System.out.printf("El número %d es divisible entre 2\n", numero);
} else {
System.out.printf("El número %d no es divisible entre 2\n", numero);
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment