Guest User

Untitled

a guest
Jul 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. package com.sylvain;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6. String nameFilm = new String ("Indiana Jones and the Last Crusade");
  7. Boolean seeFilm = false;
  8. int date = 1989;
  9. double rate = 8.3;
  10.  
  11. System.out.println("Quel est le nom du film ? "+nameFilm);
  12. System.out.println("As tu vu ce film ? "+seeFilm);
  13. System.out.println("En quelle année est-il sorti ? "+date);
  14. System.out.println("Quelle note a-t-il eu sur le site IMDB ? "+rate);
  15. }
  16. }
Add Comment
Please, Sign In to add comment