Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- *
- */
- package cl.adl.ex;
- /**
- * @author RS
- *
- */
- public class EjemploExcep {
- /**
- * @param args --> Args es lo que recibimos por consola (por ejemplo)
- */
- public static void main(String[] args) {
- String paraImprimir = division("5.4", "f");
- System.out.println("El resultado es : " + paraImprimir);
- }
- public static String division(String valorUno, String valorDos) {
- double resultado = 0;
- String resultadoString = "";
- try {
- double varUno = Double.parseDouble(valorUno);
- double varDos = Double.parseDouble(valorDos);
- resultado = varUno/varDos;
- resultadoString = String.valueOf(resultado);
- }
- catch (NumberFormatException e) {
- System.out.println("Hola NumberFormatException");
- resultadoString = "TIENE QUE SER UN NÚMERO";
- }
- catch (ArithmeticException i) {
- System.out.println("Hola ArithmeticException");
- resultadoString = "NO SE PUEDE DIVIDIR POR ZERO";
- }
- finally {
- System.out.println("Pasé por acá");
- }
- return resultadoString;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement