Got an iPhone or iPad? We have a brand new Pastebin App for both devices, and it's totally free! Click here to download the new Pastebin App for iOS.
Guest

Untitled

By: a guest on Feb 12th, 2012  |  syntax: Java  |  size: 0.22 KB  |  hits: 69  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. if (blank = true)
  2. {
  3.         if (blank2 = false)
  4.         {
  5.                 do some stuff;
  6.         }
  7.         else if (blank3 = true)
  8.         {
  9.                 do some other stuff;
  10.         }
  11.         else
  12.         {
  13.                 do something else;
  14.         }
  15. }
  16. else if (whatever)
  17. {
  18.         things;
  19. }
  20. else
  21.         other things;
  22. }