using namespace std; int main() { int date,month,year; cout<<"please enter your date of birth followed by the month and the year?"<<endl; cout<<"DATE: "; cin>>date; cout<<"Month: "; cin>>month; cout<<"Year: "; cin>>year; cout<<endl;
dateOfBirth(date,month,year);
} void dateOfBirth(int date,int month,int year) { cout<<"you were born on this day: "<<date<<endl; system("pause");