java:exceptions_intro

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision Both sides next revision
java:exceptions_intro [2015/03/02 07:56]
gthanos [Finaly Block]
java:exceptions_intro [2015/03/02 07:59]
gthanos [Exception Handler]
Line 77: Line 77:
       int y;       int y;
       int result;       int result;
-   ​Scanner input = new Scanner(System.in);​+      ​Scanner input = new Scanner(System.in);​
  
       System.out.print( "Enter first integer: " );       System.out.print( "Enter first integer: " );
Line 87: Line 87:
       try {       try {
            ​result = x/y;            ​result = x/y;
-    System.out.printf( "​Product is %d\n", result );+           System.out.printf( "​Product is %d\n", result );
       } catch (ArithmeticException ae) {       } catch (ArithmeticException ae) {
            ​System.out.println("​ArithmeticException occured!"​);​            ​System.out.println("​ArithmeticException occured!"​);​
java/exceptions_intro.txt · Last modified: 2019/04/20 05:02 by gthanos