Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. class Movies{
  2.  
  3.  
  4. public static void main(String[] args) {
  5.  
  6. String[] movies =
  7. {"Indiana Jones and the Kingdom of the Crystal Skull", "Indiana Jones and the Last Crusade","Indiana Jones and the Temple of Doom"
  8. };
  9.  
  10. String[][] actors={
  11. {"Harrison Ford", "Cate Blanchett","Karen Allen"},
  12. {"Harrison Ford", "Sean Connery", "Denholm Elliott"},
  13. {"Harrison Ford", "Kate Capshaw", "Jonathan Ke Quan"},
  14. };
  15.  
  16.  
  17. for(int i=0; i<3; i++){
  18. System.out.println("Dans le film " + movies[i] +", les principaux acteurs sont : " + actors[i][0]+ ", " + actors[i][1] + ", " + actors[i][2]);
  19. }
  20.  
  21. }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement