date.h
来自「自己通过老师指导做的图书管理系统」· C头文件 代码 · 共 16 行
H
16 行
#ifndef DATE_H
#define DATE_H
#include <iostream>
using namespace std;
class Date
{ public:
int m_year;
int m_month;
int m_day;
friend ostream & operator<<(ostream & output ,Date &d);
friend istream & operator>>(istream &output,Date &d);
Date(int y=0,int m=0,int d=0);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?