date.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //==================================
  2. // Date class
  3. //==================================
  4. #include<iostream>
  5. #include<iomanip>
  6. using namespace std;
  7. //----------------------------------
  8. class Date{
  9.   int year, month, day;
  10. public:
  11.   bool isLeapYear(){
  12.     return (year%4==0 && year%100!=0)||(year%400==0);
  13.   }//------------------------------
  14.   void print(){
  15.     cout<<setfill('0');
  16.     cout<<setw(4)<<year<<'-'<<setw(2)<<month<<'-'<<setw(2)<<day<<'n';
  17.     cout<<setfill(' ');
  18.   }//------------------------------
  19.   void set(int y,int m,int d){ year=y; month=m; day=d; }
  20. };//===============================
  21.