-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDate.cpp
More file actions
59 lines (48 loc) · 906 Bytes
/
Date.cpp
File metadata and controls
59 lines (48 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* Date.cpp
*
* Created on: 28 oct. 2013
* Author: grosalex
*/
#include "Date.h"
Date::Date() {
int inDay,inMonth,inYear;
cout << "Enter the day : ";
cin >> inDay;
cout << "Enter the month : ";
cin >> inMonth;
cout << "Enter the year : ";
cin >> inYear;
day=inDay;
month=inMonth;
year=inYear;
}
Date::Date(int inDay, int inMonth, int inYear){
day=inDay;
month=inMonth;
year=inYear;
}
Date::~Date() {
// TODO !CodeTemplates.destructorstub.tododesc!
}
void Date::print() {
cout << day << "/" << month << "/" << year;
}
int Date::getDay() const {
return day;
}
void Date::setDay(int day) {
this->day = day;
}
int Date::getMonth() const {
return month;
}
void Date::setMonth(int month) {
this->month = month;
}
int Date::getYear() const {
return year;
}
void Date::setYear(int year) {
this->year = year;
}