Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. class IndianaJones {
  2.  
  3. public static void main(String[] args) {
  4.  
  5. String title = "Indiana Jones and the Last Crusade";
  6. boolean seenOrNot = false;
  7. int releaseYear = 1989;
  8. float ratingMovie = 8.2f;
  9.  
  10. System.out.println(title);
  11. System.out.println(seenOrNot);
  12. System.out.println(releaseYear);
  13. System.out.println(ratingMovie);
  14. }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement