Assignment #47 and Two More Questions

Code


  /// Name: Tim Chuang
/// Period: 7
/// Program Name: Two More Questions
/// File Name: TwoMoreQuestions.java
/// Date Finished: 12/1/2015

import java.util.Scanner;

class TwoMoreQuestions
{
      public static void main(String[] args) 
      {
          
          Scanner keyboard = new Scanner(System.in);
          
          String answer1, answer2;
          
          System.out.println( "TWO MORE QUESTIONS, BABY!" );
          System.out.println();
          System.out.println( "Think of something and I'll try to guess it!" );
          System.out.println();
          System.out.println( "Question 1) Does it stay [inside] or [outside] or [both]?" );
          answer1 = keyboard.next();
          System.out.println( "Question 2) Is it living?" );
          answer2 = keyboard.next();
          System.out.println();
          if ( answer1.equals("inside") && answer2.equals("yes") )
          {
              System.out.println( "What could you be thinking of besides a houseplant?!?" );
          }
          if ( answer1.equals("inside") && answer2.equals("no") )
          {
              System.out.println( "What could you be thinking of besides a shower curtain?!?" );
          }
          if ( answer1.equals("outside") && answer2.equals("yes") )
          {
              System.out.println( "What could you be thinking of besides a bison?!?" );
          }
          if ( answer1.equals("outside") && answer2.equals("no") )
          {
              System.out.println( "What could you be thinking of besides a billboard?!?" );
          }
          if ( answer1.equals("both") && answer2.equals("yes") )
          {
              System.out.println( "What could you be thinking of besides a dog?!?" );
          }
          if ( answer1.equals("both") && answer2.equals("no") )
          {
              System.out.println( "What could you be thinking of besides a cell phone?!?" );
          }
      }
}
 

Picture of the output

Assignment 47