判断闰年
Posted tljx-cen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断闰年相关的知识,希望对你有一定的参考价值。
一、问题描述:
输入一个年份,判断是否闰年。
二、设计思路:
- 输入一个年份;
- 判断是否为闰年;
- 是闰年输出" is a leap year",反之,则输出" is not a leap year"。
三、
四、伪代码实现:
if year是闰年 then 输出“所输年份 is a leap year” else 输出“所属年份 is not a leap year”
五、代码实现
#include <iostream> using namespace std; int main() int year; bool isLeapYear; cout << "Enter the year: "; cin >> year; isLeapYear = ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)); if (isLeapYear) cout << year << "is a leap year" << endl; else cout << year << "is not a leap year" << endl; return 0;
闰年的判断
闰年用于弥补公历年份历法与地球实际公转周期的差值,闰年有366天,闰年2月份有29天。
判断闰年的方法:能被4整除,但不能被一百整除;或者能被四百整除的年份是闰年。
bool isLeapYear(int year){ return (year%4==0&&year%100!=0)||year%400==0; }
输出从1800年至2020年的所有闰年:
#include <iostream> using namespace std; bool isLeapYear(int year){ return (year%4==0&&year%100!=0)||year%400==0; } int main() { //输出1800年至2020年间的所有闰年 int year=1800; for(;year<=2020;year++) if(isLeapYear(year)) cout<<year<<" is leap year!"<<endl; return 0; }
以上是关于判断闰年的主要内容,如果未能解决你的问题,请参考以下文章