date3.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.   void set(int y,int m,int d);
  12.   bool isLeapYear()const;
  13.   void print()const;
  14. };//-------------------------------
  15. inline void Date::set(int y,int m,int d){
  16.   year=y; month=m; day=d;
  17. }//--------------------------------
  18. inline bool Date::isLeapYear()const{
  19.   return (year%4==0 && year%100!=0)||(year%400==0);
  20. }//--------------------------------
  21. inline void Date::print()const{
  22.   cout<<setfill('0');
  23.   cout<<setw(4)<<year<<'-'<<setw(2)<<month<<'-'<<setw(2)<<day<<'n';
  24.   cout<<setfill(' ');
  25. }//--------------------------------
  26.