Assignment 45 and Adventure

Code

///Name: Matthew Hughs
///Period: 5
///Program Name: Adventure
///File Name: Adventure.java
///Date Finished: 11/30/2015

import java.util.Scanner;

class Adventure
{
    public static void main (String [] args)
    {
        Scanner keyboard = new Scanner(System.in);
        
        String questOne, questTwo, questThree ;
        
        System.out.print("You are sitting at your computer and you need to decide which website you want to go on, \"Reddit\" or \"4chan\" ?");
        questOne = keyboard.next();
        
        if (questOne.equals("Reddit"))
        {
            System.out.println("Now you get to choose which subreddit you want to go on, your favorites are \"fiftyfifty\" or \"fatpeoplehate\" ?");
            questTwo = keyboard.next();
            if (questTwo.equals("fiftyfifty"))
            {
                System.out.println("You have been faced with the task of figuring out whether when you click on the like you will find a \"Gril\" or \"ISIS\" ?");
                questThree =keyboard.next();
                
                if (questThree.equals("Gril"))
                {
                    System.out.println("You get your hopes up that you will in fact find a hot gril on the other side of the link, but you are surprized to find that it is a gif of ISIS beheadings! :O Oh No!");
                }
                else if (questThree.equals("ISIS"))
                {
                    System.out.println("You don't really want to find a picture of ISIS behind the link, but you choose it because you know the your RNG is terrible and you just play into the inevitible.  You are surprize to find that a hot gril actually lay behind the link. Congratz!");
                }
                else
                    {
                        System.out.println("Ayy Lmao, Git Rekt");
                    }
            }
            else if (questTwo.equals("fatpeoplehate"))
            {
                System.out.println("You are faced with lots of pictures of hated on fat people, do you choose the fatest \"fat\" person or the \"skinniest\" fat person?");
                questThree = keyboard.next();
                
                if (questThree.equals("fat"))
                {
                    System.out.println(" You click on the fat person and are surprize to see that many of the comments tell the person from the picture to kill themselves.");
                }
                else if (questThree.equals("skinniest"))
                {   
                    System.out.println("You click on the the skinny one and laugh at all the mean jokes about the person in the comments.");
                }
                else 
                {
                    System.out.println("Ayy Lmao, Git Rekt");
                }
                
            }
            else 
            {
            System.out.println("Please try again");
            }
        }
        
        else if (questOne.equals("4chan"))
        {
            System.out.println("You are now faced with a question of which subchan you want to browse, do you want to look at \"random\" or \"robot\"?");
            questTwo = keyboard.next();
            if (questTwo.equals("random"))
            {
                System.out.println("You have clicked on the random link and are faced with two categories of pictures, do you choose \"political\" or \"cartoon\"?");
                questThree = keyboard.next();
                if (questThree.equals("political"))
                {
                    System.out.println("You see various memes about politics like poland ball and you have yourself a good chuckle.");
                }
                else if (questThree.equals("cartoon"))
                {
                    System.out.println("You are given some very gruesome memes of the evil pepe killing the feel and it brings many tears to your eyes");
                }
                else 
                {
                    System.out.println("Ayy Lmao, Git Rekt");
                }
            }
            else if (questTwo.equals("robot"))
            {
                System.out.println("You are faced with two catagories of pictures that you could look at, sexy \"robots\" or \"memes\" that are just too dank for 4chan?");
                questThree = keyboard.next();
                
                if (questThree.equals("robots"))
                {
                    System.out.println("You click on the sexy robots link and are surprized to see many of the robots that you recognize like Bender from Futurama and Walli.");
                }
                else if (questThree.equals("memes"))
                {
                    System.out.println("You click on the link and are suddenly blinded by a light brighter than the sun and you are instantly burned to ashes.");
                }
                else 
                {
                    System.out.println("Ayy Lmao. Git Rekt");
                }
            }
            else 
            {
                System.out.println("Ayy Lmao. Git Rekt");
            }
        }
        
        
        else 
        {
            System.out.println("Ayy Lmao. Git Rekt");
        }
    }
}
    

Picture of the output

adventure