【題意】:輸入兩個數,Y和N。輸出從Y(如果Y是閏年則包含Y)開始的第N個閏年。
【代碼:AC】
#include#include #include #include #include using namespace std; int isLeapYear(int year) { if ((year%4 == 0 && year%100 != 0) || (year%400 == 0)) return 1; return 0; } int main() { int N = 0; cin >> N; while (N--) { int year = 0, n = 0, cnt = 0; cin >> year >> n; while (true) { if(isLeapYear(year++)) cnt++; if (cnt == n) break; } cout << --year << endl; } }