Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public class LaDerniereCroisade {
  2.  
  3. public static void main(String[] args) {
  4. String movieName = "Indiana Jones and the Last Crusade" ;
  5. boolean haveSeenIt = false;
  6. int yearOfRelease = 1989;
  7. double movieMark = 8.2;
  8. System.out.println(movieName);
  9. System.out.println(haveSeenIt);
  10. System.out.println(yearOfRelease);
  11. System.out.println(movieMark);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement