public void compareStrings()
This method will prompt the user to type two strings and will put them into different
String variables. Then it will compare those strings to see if they are the same, i.e. have
the same letters in the same order. If the strings are the same, “same” will be displayed
on the screen. If they are different, “different” will be displayed. To compare two String
objects you must use the equals() method of the String class.
How do I do this?