📄 date.h
字号:
#ifndef DATE_H
#define DATE_H
#include <iostream>
#include <fstream>
using namespace std;
namespace jixia
{
class Date
{
int year,month,day;
public:
Date(){}
Date(int y,int m,int d);
Date(Date &d);
friend ostream & operator<<(ostream &o,Date & d);
friend istream & operator>>(istream &i,Date & d);
};
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -