Skip to content

Instantly share code, notes, and snippets.

@uncoded-ro
Created January 12, 2020 07:12
Show Gist options
  • Save uncoded-ro/247fb70f8f70f62e135bd8e2b92cf754 to your computer and use it in GitHub Desktop.
Save uncoded-ro/247fb70f8f70f62e135bd8e2b92cf754 to your computer and use it in GitHub Desktop.
package ro.virtualcampus.exceptie;
public class Exceptie {
public static void main(String[] args) {
int a = 257;
System.out.println("Rezultatul impartirii lui " + a + " la 0 este " + a / 0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment