import org.clasejava.Leer;
import java.io.*;
public class excepciones
{
public static void main(String []args)
{
int x = 0;
int y = 0;
int z = 0;
try
{
x = Leer.datoInt();
y = Leer.datoInt();
z = x + y;
System.out.println("z = " + x + " + " + y);
System.out.println("z = " + z);
}
catch(java.lang.ArithmeticException e)
{
System.out.println("No se puede dividir entre cero porque es igual al infinito");
}
catch(java.lang.Error e)
{
System.out.println("z es un variable de tipo entero, no puede asignarle una cadena");
}
}
}
No hay comentarios:
Publicar un comentario