Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. public class IMDB{
  2. public static void main(String[] args){
  3. Movie m1 = new Movie(45, "Sharknado");
  4. Movie m2 = new Movie(87, "Shawshank Redemption");
  5. Movie m3 = new Movie(33, "Shutter Island");
  6. Movie m4 = new Movie(69, "Basic Instinct");
  7. Movie m5 = new Movie(20, "Interstellar", "Science Fiction", 2014, "Christopher Nolan", 169, 8.6);
  8. MovieList mlist = new MovieList(m1, m2, m3, m5);
  9.  
  10. mlist.toPrint();
  11.  
  12. mlist.addMovie(m4);
  13.  
  14. mlist.removeMovie(m2);
  15.  
  16. mlist.toPrint();
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement