Advertisement
Guest User

Untitled

a guest
Oct 7th, 2015
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. // ClassDate.cpp : Defines the entry point for the console application.
  2. //
  3.  
  4. #include "stdafx.h"
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10.     Date date(10,6,2015);
  11.  
  12.     date.displayDate();
  13.  
  14.     cout << date.getMonth() << "//" << date.getDay() << "//" << date.getYear() << endl;
  15.     if(1)
  16.  
  17.  
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement