Advertisement
Guest User

Untitled

a guest
Nov 30th, 2015
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. void whichOfTheseIfsAndElsesApplyToWhichAtAGlance() {
  2.     if (a) {
  3.  
  4.     }
  5.     else if (b) {
  6.  
  7.     }
  8.     else {
  9.  
  10.     }
  11.     if (c) {
  12.  
  13.     }
  14.     if (d) {
  15.  
  16.     }
  17.     else {
  18.  
  19.     }
  20. }
  21.  
  22. void thisIsReallyEasyToWorkOutAtAGlance() {
  23.     if (a) {
  24.  
  25.     } else if (b) {
  26.  
  27.     } else {
  28.  
  29.     }
  30.     if (c) {
  31.  
  32.     }
  33.     if (d) {
  34.  
  35.     } else {
  36.    
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement