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

资源简介

C++实战源码-何年是闰年(入门级实例045).zip

资源截图

代码片段和文件信息

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

#include “stdafx.h“

int main()
{
int year; //定义基本整型变量year
printf(“请输入年份:\n“);
scanf(“%d“ &year); //从键盘输入表示年份的整数
printf(“╔═════════════════╗\n“);
printf(“║                                  ║\n“);
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) //判断闰年条件
printf(“║           %d年是闰年           ║\n“ year); //满足条件的输出是闰年
else
printf(“║           %d年不是闰年         ║\n“ year); //否则输出不是闰年
printf(“║                                  ║\n“);
printf(“╚═════════════════╝\n“);
return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         730  2010-07-31 14:38  LeapYear\LeapYear.cpp
     文件        4560  2010-07-31 14:18  LeapYear\LeapYear.dsp
     文件         541  2010-07-31 14:18  LeapYear\LeapYear.dsw
     文件         295  2010-07-31 14:18  LeapYear\StdAfx.cpp
     文件         769  2010-07-31 14:18  LeapYear\StdAfx.h

评论

共有 条评论