date2.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //==================================
- // Date class
- //==================================
- #include<iostream>
- #include<iomanip>
- using namespace std;
- //----------------------------------
- class Date{
- int year, month, day;
- public:
- void set(int y,int m,int d){ // 默认内联
- year=y; month=m; day=d;
- }//------------------------------
- bool isLeapYear();
- void print();
- };//-------------------------------
- inline bool Date::isLeapYear(){ // 显式内联
- return (year%4==0 && year%100!=0)||(year%400==0);
- }//--------------------------------
- void Date::print(){
- cout<<setfill('0');
- cout<<setw(4)<<year<<'-'<<setw(2)<<month<<'-'<<setw(2)<<day<<'n';
- cout<<setfill(' ');
- }//--------------------------------