Programming Assignment 3
Create, using NetBeans, a complete Java program called StringReverse that prompts the user at the command line for one 3-character string, then prompts the user for another 3-character string, prints out the two input strings with a space between them, and then fnally prints on a separate line the two input strings "in reverse" with a space between them.
So, for example, if the frst string is "usr" and the second string is "bin" your program would output something like the following:
The two strings you entered are: usr bin. The two strings in reverse are: nib rsu.