You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* To change this template go to Preferences | IDE Settings | File and Code Templates
*/
public class DivideByZero {
public static void main(String[] args) {
System.out.println(5.0 / 0); // doesn't throw any exception
System.out.println(5 / 0); // throws runtime exception or unchecked exception (does NOT need explicit handling). To be specific, throws an arithmetic exception.