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

C#编程

开发平台:

Visual C++

  1. //*********************
  2. //**    tdate.cpp    **
  3. //*********************
  4. #include <iostream.h>
  5. #include "tdate.h"
  6. void Tdate::Set(int m,int d,int y)
  7. {
  8.   month=m;  day=d;  year=y;
  9. }
  10. int Tdate::IsLeapYear()
  11. {
  12.   return (year%4==0&&year%100!=0)||(year%400==0);
  13. }
  14. void Tdate::Print()
  15. {
  16.   cout <<month <<"/" <<day <<"/" <<year <<endl; }