Simple Date Class Program C++
February 8th, 2010
1. Write a program that creates a simple Date class that can be used to store dates in three integers, one for the year, one for the month, and one for the day. The program should then ask the user for input from the keyboard of a date in the format YYYY, then MM, then DD where all the values are integers. Next the program should print out the date to the screen in the format YYY-MM-DD:
2010-02-03
The Date class should have public functions that include:



