Guest User

Untitled

a guest
Sep 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. class Variables {
  2.  
  3. public static void main(String[] args){
  4. String film = new String ("INDIANA JONES AND THE LAST CRUSADE");
  5. boolean vu = false;
  6. int annee = 1989;
  7. double note = 8.3;
  8. System.out.println("Titre : " + film + " Annee : " + annee + " Note :" + note + " Vu : " + false);
  9. }
  10. }
Add Comment
Please, Sign In to add comment