Project 1 and Choose Your Own Slightly Longer Adventure!

Code

  /// Name: Marco Correa
  /// Period: 5
  /// Program Name: Adventure1
  /// File Name: Adventure1.java
  /// Date Finished: 1/20/2016




 import java.util.Scanner;

  public class Adventure1 {
      public static void main(String[] args) {
      Scanner keyboard = new Scanner(System.in);

      String Go, Look, Pantry, Eat;

      System.out.println(" WELCOME TO MY TINY ADVENTURE");
      System.out.println("  ");
      System.out
          .println(" You are in a creepy house! Would you like to go 'upstairs' or into the 'kitchen'? ");
      System.out.print("> ");
      Go = keyboard.next();

      if (Go.equalsIgnoreCase("kitchen")) {
          System.out
              .println("There is a long countertop with dirty dishes everywhere. Off to one side there is, as you'd expect, a refrigerator. You may open the 'refrigerator' or look in the 'pantry'. ");
      }
      System.out.print(">  ");
      Look = keyboard.next();

      if (Look.equalsIgnoreCase("refrigerator")) {
          System.out
              .println("Inside the refrigerator you see food and stuff. It looks pretty nasty. Would you like to eat some of the food, 'Yes' or 'No'?");
      } else if (Look.equalsIgnoreCase("pantry")) {
          System.out
              .println("There is a killer inside. Do you want to 'fight' them, or 'run away'?");
          Pantry = keyboard.next();

          if (Pantry.equalsIgnoreCase("fight")) {
          System.out.println("  ");
          System.out.println("You're weak and die");
          }

          else if (Pantry.equalsIgnoreCase("run away")) {
          System.out.println("  ");
          System.out
              .println("You died because your too slow & can't run");
          }
      }
      System.out.print(">  ");
      Eat = keyboard.next();

      if (Eat.equalsIgnoreCase("Yes")) {
          System.out.println("  ");
          System.out.println("You live!");
      }

      else if (Eat.equalsIgnoreCase("No")) {
          System.out.println("  ");
          System.out.println("You die of starvation!");
      }
      System.out.print(">  ");

      }

  }


    

Picture of the output

proj1