Advertisement
Guest User

Untitled

a guest
Nov 14th, 2011
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. package test;
  2.  
  3. public class Int extends Dec {
  4. public static void Print(String Input)
  5. {
  6. System.out.println(Input);
  7. }
  8.  
  9. public static void Print(int Input)
  10. {
  11. System.out.println(Input);
  12. }
  13.  
  14. public static void Print(float Input)
  15. {
  16. System.out.println(Input);
  17. }
  18.  
  19. public static void Print(boolean Input)
  20. {
  21. System.out.println(Input);
  22. }
  23.  
  24. public static void main(String[] args) {
  25. Player Jim = new Player();
  26. Jim._Sethp(100);
  27. Print(Jim._Gethp());
  28. }
  29.  
  30. }
  31.  
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement