C++與演算法

解答 - 判斷閏年

因為不是閏年就是平年,沒有第三種狀況。

所以只要針對描述閏年的兩句話下手:

  • 西元年份除以4可整除,且除以100不可整除,為閏年。
  • 西元年份除以400可整除,為閏年。
#include<iostream>
using namespace std;

int main()
{
    int n;
    while( cin >> n )
    {
        if( n%400==0 or ( n%4==0 and n%100!=0 ) )
            cout << "Yes" << endl;
        else
            cout << "No" << endl;
    }
    return 0;
}