Guest User

Untitled

a guest
Jul 16th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. class Dangling {
  2.     public static void main(String[] args) {
  3.         int num = -1;
  4.  
  5.         if (num > 0)
  6.             if (num < 10)
  7.                 System.out.println("aaa");
  8.         else
  9.             System.out.println("bbb");
  10.     }
  11. }
Add Comment
Please, Sign In to add comment