?? datelegal.h
字號(hào):
#ifndef DATELEGAL_H_H
#define DATELEGAL_H_H
#include <iostream>
#include <cstdlib>
#include <string>
using namespace std;
class DateLegal
{
private:
int year;
int month;
int day;
protected:
bool is_super_year();
bool is_big_month();
bool is_month_2();
public:
DateLegal(int y, int m, int d);
void DLsetdate(int y,int m, int d);
bool year_legal();
bool month_legal();
bool day_legal();
bool fine();
};
#endif
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -