Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. if (cond1 && cond2 && cond3)
  2. ...
  3. else if (cond4 && cond5 && cond6)
  4. ...
  5.  
  6. bool b1 = cond1 && cond2 && cond3;
  7. bool b2 = cond4 && cond5 && cond6;
  8. if (b1)
  9. ...
  10. else if (b2)
  11. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement