Advertisement
Guest User

Untitled

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