I need help in Java Practice-58.2
Everything is the same as in initial code.However there is still an error.Please Help! import java.util.Scanner; import java.util.InputMismatchException; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); try { int num1 = scanner.nextInt(); int num2 = scanner.nextInt(); /* 1. Еrror: division by zero 2. Error: wrong value type */ //введите код сюда System.out.println(num1/num2); } catch(InputMismatchException ex){ System.out.println("Error: wrong value type"); } catch(ArithmeticException ex) { System.out.println("Error: division by zero"); } } }