Guest User

Untitled

a guest
Nov 19th, 2018
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. public class Movie {
  2.  
  3. public static void main(String[] args) {
  4. String movieName = "Indiana Jones and the Last Crusade";
  5. boolean viewed = false;
  6. int releaseDate = 1989;
  7. float note = 8.3F;
  8.  
  9. System.out.println("Have I watched the movie? : "+ viewed);
  10. System.out.println("Title : " + movieName);
  11. System.out.println("Release date : " + releaseDate);
  12. System.out.println("Note : " + note + "/10");
  13. }
  14.  
  15. }
Add Comment
Please, Sign In to add comment