교수님께서는 const int& getDay(){
return m_day;} 로 멤버변수인 m_day를 리턴하셨는데, main함수에서 출력할 때는 그냥
void getDay(){
cout<<day<<endl;}로 public함수를 만들고, 메인에서 today.getDay();로 해줘도 되지 않나요?
가령, getDate()같이 멤버변수들을 모두 출력한다고 하였을 때는
cout<<month<<" "<<day<<" '<<year<<endl;로 하는 것이 편리하지 않나요??