Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class BigNoobStatic {
  2.  
  3. static int i = 7;
  4. static String insult = "NOOB";
  5.  
  6. static void methodOne()
  7. {
  8. System.out.println("You " + i);
  9. }
  10.  
  11. static void methodTwo()
  12. {
  13. System.out.println("Fucker " + insult);
  14. }
  15.  
  16. public static void main(String[] args)
  17. {
  18. methodOne();
  19. methodTwo();
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement