Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. import java.math.*;
  2. import javax.swing.*;
  3.  
  4. public class dead {
  5.  
  6. static boolean ChangeWordFlag = true;
  7. static int x = 3;
  8.  
  9. static double y = 0.3;
  10.  
  11. static String name = "Osawese";
  12.  
  13. static JPanel panelObject = new JPanel();
  14.  
  15. // ------------------------------------------------------------------------------------------
  16.  
  17. public static void main(String[] args) {
  18. panelObject.setEnabled(true);
  19. panelObject.setSize(800, 600);
  20. panelObject.setVisible(true);
  21.  
  22. addIntAndDouble(x, y);
  23. System.out.println(name);
  24. System.out.println("Java Math shit under here lol");
  25. System.out.println(Math.PI);
  26. System.out.println(Math.E);
  27.  
  28. }
  29.  
  30. static void addIntAndDouble(int putTheXHere, double putTheYHere) {
  31.  
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement