Writing Code using Calendar and Date classes
I need to create a small program which will collect the user's birthday, perform several calculations about the date, and will display an output of interesting facts about their birthday.
Here's a sample run of a test program in its entirety. The elements in bold are user input, while the elements not in bold are output.
Please enter your birthday in the form MM-DD-YYYY:
06-09-1977
Your birthday is June 9, 1977
You were born on a Thursday!
Today is February 8, 2007, so your birthday was about
936,278,979 seconds ago, which is 10,836 days ago
(or 29 years and 243 days ago).
Your next birthday is 121 days from now, on a Saturday.
On your birthday, you will be 30 years old.
I need to write the code for a program such as this one, I know I need to use Calendar and Date, but I am having trouble starting to write the code, I am kind of new at this so I need help to beggin writing the code.

