Guest User

Untitled

a guest
May 25th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class NewClass {
  2. public static void main(String args[]){
  3. int a = 0, b = 10, c = 0;
  4. try{
  5. a = b/c; //Dividir por zero?! EXCEPTION!!!
  6. } catch (Exception e) {
  7. System.err.println(e);
  8. }
  9. }
  10. }
Add Comment
Please, Sign In to add comment