Advertisement
MelindaElezovic

IMDB

Dec 4th, 2015
2,844
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Icon 1.77 KB | None | 0 0
  1. //Melinda
  2. //12.3.15
  3. //IMDB
  4. import java.util.*;
  5.  
  6. public class IMDB
  7. {
  8.   public static void main(String[] args)
  9.   {
  10.     System.out.println("Melinda's Movie Picks");
  11.     System.out.println("1.) I Am Sam");
  12.     System.out.println("2.) Kept Women");
  13.     System.out.println("3.) Elf");
  14.     System.out.println("4.) The Heart of Christmas");
  15.     Scanner input = new Scanner(System.in);
  16.     System.out.println("Please enter the number of the movie you would like to watch(1-4)");
  17.     int pick = input.nextInt();
  18.    
  19.     if (pick == 1)
  20.       System.out.println("I Am Sam \n A mentally handicapped man fights for custody of his 7-year-old daughter, and in the process teaches his cold hearted lawyer the value of love and family.\nStars: Sean Penn, Michelle Pfeiffer, Dakota Fanning");
  21.    
  22.     else if (pick == 2)
  23.       System.out.println("Kept Women \n A woman and her fiancé move to the suburbs, after being robbed. She becomes friendly with the mysterious man next door, who she begins to expect is hiding a dangerous secret.\nStars: Courtney Ford, Shaun Benson, Andrew W. Walker");
  24.    
  25.     else if (pick == 3)
  26.       System.out.println("Elf \n After inadvertently wreaking havoc on the elf community due to his ungainly size, a man raised as an elf at the North Pole is sent to the U.S. in search of his true identity.\nStars: Will Ferrell, James Caan, Bob Newhart");
  27.    
  28.     else if (pick == 4)
  29.       System.out.println("The Heart of Christmas \n The Lockes are devastated when they learn their young son, Dax, has cancer. But with courage, determination and faith, they give Dax a one last Christmas, even if it is in October.\nStars: Candace Cameron Bure, Jeanne Neilson, Christopher Shone");
  30.    
  31.     else
  32.       System.out.println("Please choose a movie numbered from 1 to 4");
  33.   }
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement