Leap year
Posted lym11248
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leap year相关的知识,希望对你有一定的参考价值。
Leap year is defined as a year that divisible by 400 or not divisible by 100 but divisible by 4.
#include <iostream>using namespace std;
int main(){ int y; cin>>y; if((y%4==0&&y%100!=0)||y%400==0) cout<<"yes"<<endl; else cout<<"no"<<endl; return 0; }
:D
以上是关于Leap year的主要内容,如果未能解决你的问题,请参考以下文章
matlab中fprintf('%4d year is a leap year.\n',year)这句话里面'%4d是啥意思?干啥用的?
pandas判断日期是否是闰年(is_leap_year)实战: 数据列转化为日期(时间)格式判断pandas的日期数据列是否是闰年