Este problema pede para recebermos dois ints
e que, caso não recebamos números entre 0 e 2,147,483,647 (Integer.MAX_VALUE
), devemos fazer um catch
que retorna duas exceções: ArithmeticException
ou InputMismatchException
, dependo do input "errado".
Para isso, vamos fazer um try / catch
. Neste caso, vamos escanear dentro do try
, passando o seguinte código:
try (Scanner scanner = new Scanner(System.in)) {
int x = scanner.nextInt();
int y = scanner.nextInt();
System.out.println(x / y);
Aqui, pegamos os inputs de x
e y
e fazemos a divisão, como pede o problema.
A seguir, utilizaremos o catch
. Para isso, passamos as exceções solicitadas entre parênteses junto a um nome de nossa escolha e imprimimos a exceção caso o software identifique que há um problema. Fica assim:
} catch (ArithmeticException arithmeticEx) {
System.out.println(arithmeticEx);
} catch (InputMismatchException inputMismatchEx) {
System.out.println(inputMismatchEx.getClass().getName());
}
No segundo catch
usamos .getClass().getName()
porque existem duas exceções de InputMismatchException
que são solicitadas. Usando os métodos da própria classe podemos retornar o erro corretamente, dependendo do input de cada tentativa.
=========
O código final fica assim, dentro da main:
try (Scanner scanner = new Scanner(new File("input.txt"))) {
int x = scanner.nextInt();
int y = scanner.nextInt();
System.out.println(x / y);
} catch (ArithmeticException arithmeticEx) {
System.out.println(arithmeticEx);
} catch (InputMismatchException inputMismatchEx) {
System.out.println(inputMismatchEx.getClass().getName());
}
=========
Referências:
InputMismatchException : Oracle
ArithmeticException : Oracle
Try block : Oracle
Catch block : Oracle
============
Essa publicação faz parte de uma série de exercÃcios resolvidos em Java no HackerRank. Acesse a série completa:
- HackerRank #6 | Scanner e End-of-file
- HackerRank #7 | Int to String / String to Int
- HackerRank #8 | Date and Time
- HackerRank #9 | Static Initializer Block
- HackerRank #10 | Currency Formatter
- HackerRank #11 | DataTypes
- HackerRank #12 | Strings Introduction
- HackerRank #13 | Substring Comparisons
- HackerRank #14 | Abstract Class
- HackerRank #18 | BigInteger
- HackerRank #19 | Loops II
- HackerRank #20 | String Reverse
- HackerRank #23 | Instanceof keyword
- HackerRank #26 | Generics
- HackerRank #27 | 1D Array
- HackerRank #28 | Anagrams
- HackerRank #33 | Arraylist
- HackerRank #34 | Exception Handling Try / Catch
- HackerRank #36 | Exception Handling
- HackerRank #37 | List
- HackerRank #38 | SubArray
- HackerRank #39 | HashSet
- HackerRank #40 | Java Dequeue
Top comments (0)