date.h

来自「it is a usefull thing」· C头文件 代码 · 共 25 行

H
25
字号
//=====================================
// date.h
//=====================================
#ifndef HEADER_DATE
#define HEADER_DATE
#include<iostream>
#include<iomanip>
using namespace std;
//-------------------------------------
class Date{
  int year, month, day;
  void init(int y, int m, int d)throw(out_of_range);
public:
  Date(const string& s)throw(out_of_range);
  Date(int y=2000, int m=1, int d=1)throw(out_of_range);
  bool isLeapYear()const;
  friend ostream& operator<<(ostream& o, const Date& d);
};//-----------------------------------
inline ostream& operator<<(ostream& o, const Date& d){
  o<<setfill('0')<<setw(4)<<d.year<<'-'<<setw(2)<<d.month<<'-';
  return o<<setw(2)<<d.day<<'\n'<<setfill(' ');
}//------------------------------------
#endif  //HEADER_DATE

 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?