Ver Mensaje Individual
  #4 (permalink)  
Antiguo 16/02/2011, 17:11
REHome
 
Fecha de Ingreso: mayo-2007
Ubicación: PIC-16F84A
Mensajes: 729
Antigüedad: 17 años, 5 meses
Puntos: 8
Respuesta: Par o impar en Java

Por cierto, quiero hacer el truco del Trhow, excepción propia. Si introduces un cero, que lo detecte como excepción. Por ahora hice este código.

Código JAVA:
Ver original
  1. try
  2.         {
  3.         Scanner teclado = new Scanner(System.in); // Creamos el objeto teclado.
  4.         int numerador = teclado.nextInt();
  5.         int mod = numerador % 2;
  6.         if ( mod == 0)
  7.         {
  8.             System.out.println("El número es par.");
  9.         }
  10.         else
  11.         {
  12.             System.out.println("El número es impar.");
  13.         }
  14.         }
  15.         catch (InputMismatchException ex)
  16.         {
  17.             throw new IOException();
  18.         }
  19.         catch (IOException){
  20.             System.out.printf("ERROR. Haz introducido un cero.")
  21.         }
  22.         }
__________________
Meta Shell, VERSIÓN 1.2.2
Descargar