Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as C++ by chsu ( 16 years ago )
void date(int Day, int Month, int Year)
{
cout << "Day: " << Day << " Month: " << Month << " Year: " << Year << endl;
};
void main()
{
int Day,Month,Year;
cin >> Day;
cin >> Month;
cin >> Year;
date(Day,Month,Year);
cin.get();
cin.get();
}
Revise this Paste