• 大小: 7.85KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 标签:

资源简介

C++实战源码-判断闰年(入门级实例200).zip

资源截图

代码片段和文件信息

// runyear.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include “iostream.h“

void IsLeap(const int year)
{

char * mm =  (year % 4 == 0 && year % 100 != 0) //判断是否为闰年
            || year % 400 == 0 ? “是闰年“:“不是闰年“;
cout << year << “年:“ << mm << endl;

}

int main(int argc char* argv[])
{
int year;
cin >> year;
IsLeap(year);
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1214  2010-10-13 15:40  runyear\ReadMe.txt
     文件         428  2010-12-04 13:21  runyear\runyear.cpp
     文件        4548  2010-10-13 15:40  runyear\runyear.dsp
     文件         539  2010-10-13 15:40  runyear\runyear.dsw
     文件       50176  2010-12-04 13:24  runyear\runyear.ncb
     文件       53760  2010-12-04 13:24  runyear\runyear.opt
     文件        1327  2010-12-04 13:21  runyear\runyear.plg
     文件         294  2010-10-13 15:40  runyear\StdAfx.cpp
     文件         769  2010-10-13 15:40  runyear\StdAfx.h

评论

共有 条评论