Intro to Java Classwork: User Question
Write a Java program contained in a single file named "UserQuestion.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 the 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 doing everything above, ask the user to enter a positive integer.
Then determine and tell the user if the entered number is a perfect
square.  A perfect square is a number that is equal to an integer
multiplied by itself.  Examples include 1, 4, 9, 16, 25, 36, 49, 64.