本文主要是介绍C++学习笔记——判断闰年,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、题目描述
二、代码
#include <iostream>
using namespace std;
bool year_hs(int y)
{if(y%4==0 && y%100!=0){return 1;}if(y%400==0){return 1;}return 0;
}
int main()
{int year;cin >> year;int a=year_hs(year);if(a==1){cout << "Y";}else {cout << "N";}return 0;
}
这篇关于C++学习笔记——判断闰年的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!