L5.2: Try Catch Exceptions Example #3

PHOTO EMBED

Tue Oct 17 2023 08:51:26 GMT+0000 (Coordinated Universal Time)

Saved by @testpro #java

public class Main {
    public static void main(String[ ] args) {

        try {

            int firstNumber = 5;
            int secondNumber = 0;
            int quotient = firstNumber / secondNumber;

            System.out.println(quotient); // error!
        }

        catch (Exception e){
            System.out.println("We can't divide a number by 0!");
        }

        finally {
            System.out.println("Our 'try catch' example is finished.");
        }
    }
}
/* Output:
We can't divide a number by 0!
Our 'try catch' example is finished.
*/
content_copyCOPY