cout << "Please enter your date (mm_dd_yyyy" << endl;
getline(cin, month, day, year);
How do I define several variables (in this case 3) using cin? My homework assignment requests me to be able to get the variables if I type in something such as: "6 10 1973". Anyone know how to achieve this?