program shoud print
1. the age of the person in years
2. the day of the week on which the persons was born
3. The sesaon in which the person was born
#include <iostream>
#include <string>
using namespace std;
void get_inputs(string &name, int &birth_year, int& birth_month, int& birth_day, int ¤t_year, int& current_month, int ¤t_day);
void cal_Age();
void cal_Day_Of_week();
void cal_Season();
void print();
int main()
{
string name;
int birth_year;
int birth_month;
int birth_day;
int current_year;
int current_month;
int current_day;
get_inputs(name, birth_year, birth_month, birth_day, current_year, current_month, current_day );
cal_Age();
cal_Day_Of_week();
cal_Season();
print();
system("pause");
return 0;
}
void get_inputs(string &name, int &birth_year, int& birth_month, int& birth_day, int ¤t_year, int& current_month, int ¤t_day)
{
cout << " Please type in your name ";
cin >> name;
cout << " Please enter 4 digit date of birth ";
cin >> birth_year;
cout << " Please enter 2 digit birth month ";
cin >> birth_month;
cout << " Please enter 2 digit birth day ";
cin >> birth_day;
cout << " Please enter current 4 digit year ";
cin >> current_year;
cout << " Please enter curennt 2 digit month ";
cin >> current_month;
cout << " Please enter current 2 digit day ";
cin >> current_day;
}