Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.11 KB | None | 0 0
  1. if(condition)
  2.     bar();
  3. else if(condition2)
  4.     foo();
  5.  
  6. if(condition)
  7.     bar();
  8. else
  9.     if(condition2)
  10.         foo();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement