Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. package HelloWorld;
  2.  
  3. public class HelloWorld {
  4. @SuppressWarnings("unused")
  5. public static void main(String[] args) {
  6. int my_variable = 10;
  7. float my_decimal=(float)4.5;
  8. double my_double=11.56;
  9. char my_char = 'A';
  10. boolean is_true = true;
  11. if (60==65)
  12. System.out.println("You are a Senior Citizen");
  13. else
  14. System.out.println("You are a Junior Citizen");
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24. System.out.println(my_variable);
  25. System.out.println(my_decimal);
  26. System.out.println(my_double);
  27. System.out.println(my_char);
  28. System.out.println(is_true);
  29.  
  30. }
  31.  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement