Advertisement
aknan_z

madlib

Nov 29th, 2015
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.00 KB | None | 0 0
  1. //aknan
  2. //October 27,2015
  3. //Madlib project
  4. import java.util.Scanner;
  5.  
  6. public class MadLib
  7. {
  8.   public static void main(String[] args)
  9.   {
  10.     Scanner input = new Scanner(System.in);
  11.    
  12.     System.out.println("What is your name?");
  13.     String name = input.nextLine();
  14.    
  15.     System.out.println(name+"Do you want to play madlibs?");
  16.     String answer=input.nextLine();
  17.                          
  18.     System.out.println("Name an adjective.");
  19.     String adjective = input.nextLine();
  20.    
  21.     System.out.println("Name a song title.");
  22.     String song = input.nextLine();
  23.    
  24.     System.out.println("Name a celebrity.");
  25.     String celebrity = input.nextLine();
  26.    
  27.     System.out.println("Name a feeling.");
  28.     String feeling = input.nextLine();
  29.    
  30.     System.out.println("Name a verb.");
  31.     String verb = input.nextLine();
  32.    
  33.     System.out.println("Name a place.");
  34.     String place = input.nextLine();
  35.    
  36.     System.out.println("Name a food.");
  37.     String food = input.nextLine();
  38.    
  39.     System.out.println("Name a object.");
  40.     String object = input.nextLine();
  41.    
  42.     System.out.println("Name a person");
  43.     String person = input.nextLine();
  44.    
  45.     System.out.println("I just got back from Florida " + person + ".");
  46.     System.out.println("Can you believe we got to sing " + song + " and dance in the  " + place + "?! Everyone was laughing and having a great time.");
  47.     System.out.println("I made \'" + food + " and " + object + "\' pizza, which is my favorite!");
  48.     System.out.println("They even stuffed the crust with " + object+ ". How " + feeling + "!");
  49.     System.out.println("If that wasn't good enough already, " + celebrity + " was there singing " + song + ".");
  50.     System.out.println("I was so inspired by the music, I had to get up out of my seat and " + verb + ".");
  51.     System.out.println("Haha, you said " + answer + " to playing madlibs but I forced you to play any way.");
  52.     System.out.println("Later " + name + ".");
  53.   }//close main
  54. }//close class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement