📄
字号:
#include "stdafx.h"
#include <iostream>
using namespace std;
#include "stdafx.h"
#include <iostream>
using namespace std;
class CDate
{
public:
void SetYear(const int& nYear)
{
m_nYear = nYear;
}
void SetMonth(const int& nMonth)
{
m_nMonth = nMonth;
}
void SetDay(const int& nDay)
{
m_nDay = nDay;
}
void Set(const int& nMonth, const int& nDay, const int& nYear)
{
m_nYear = nYear;
m_nMonth = nMonth;
m_nDay = nDay;
}
void print();
protected:
private:
int m_nYear;
int m_nMonth;
int m_nDay;
};
void CDate::print()
{
cout << m_nYear << "/" << m_nMonth << "/" << m_nDay << endl;
}
void main()
{
CDate t;
CDate&x = t;
t.SetYear(2006);
t.SetMonth(12);
t.SetDay(23);
x.print();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -