Advertisement
Guest User

Untitled

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