Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. class asdf{
  2. public static void main(String args[]){
  3. //break a for-each style loop
  4. for(String x:args){
  5. if (x.equals("-p")) System.out.print("private mode enabled, ");
  6. else if (x.equals("-st")) System.out.print("stealth mode enabled, ");
  7. else if (x.equals("-s")) System.out.print("silly balls mode enabled, ");
  8. else if (x.equals("-franz")) System.out.print("we are going to tweak my nipples in france, ");
  9. else if (x.equals("-fart")) System.out.print("buuuurp, ");
  10. }
  11.  
  12. System.out.println("yip.");
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement