Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Melinda
- //12.3.15
- //IMDB
- import java.util.*;
- public class IMDB
- {
- public static void main(String[] args)
- {
- System.out.println("Melinda's Movie Picks");
- System.out.println("1.) I Am Sam");
- System.out.println("2.) Kept Women");
- System.out.println("3.) Elf");
- System.out.println("4.) The Heart of Christmas");
- Scanner input = new Scanner(System.in);
- System.out.println("Please enter the number of the movie you would like to watch(1-4)");
- int pick = input.nextInt();
- if (pick == 1)
- 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");
- else if (pick == 2)
- 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");
- else if (pick == 3)
- 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");
- else if (pick == 4)
- 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");
- else
- System.out.println("Please choose a movie numbered from 1 to 4");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement