Age, Name

Write a program AgeName.java that has the user enter their age (a double value) and their name (a String), and print out a message confirming those values. (Note that you may need to clear the text buffer before having the user enter their name. This assignment is designed to demonstrate that challenge.)

Sample output:

Enter your age: 23
Enter your name: Marilyn
Marilyn, you are 23.0 years old.