Write a Java program that will ask the user to enter a floating-point number, read the user's
response, and tell the user whether the number's square root is between 1 and 50 inclusive. You can
assume the user will always provide valid input(s) so you do not have to deal with input validation.
Sample Output:
Type a number: 123.4
The square root of 123.4 is between 1 and 50.
Type a number: 4567.8
The square root of 4567.8 is out of 1 and 50.