Intro to Java Classwork: Conditions
Write a Java program contained in a single file named "Conditions.java"
that asks the user a question that requires a one-word answer.  Then,
use 'if' and 'else' statements to print (display) at least three
different responses based on the user's answer to your question.

For this program, other than the 'Scanner' class, you may not import or
use any external methods.  However, it is okay to put all of your code
inside the 'main' method of your program.


As always, all of your code must be your own, written entirely and
only by you within your online CodeHS.com account.  You must never
copy/paste, receive, view, or in any way use code that was created
or modified by another person, entity, or artificial intelligence.


Advanced Option
After completing the regular assignment above, ask the user a second
(different) question requiring a one-word answer.  Then, use a series
of compound 'if' and 'else' statements (ones that use '&&' and '||')
to display a variety of responses based on the user's answers to both
of your questions.