zltzlt 发表于 2020-1-18 19:08:17

洛谷题目 P5711

// https://www.luogu.com.cn/problem/P5711

#include <iostream>
using namespace std;

int main()
{
    int y;
    cin >> y;
    if (y % 400 == 0 || (y % 4 == 0 && y % 100 != 0))
      cout << 1;
    else
      cout << 0;
    return 0;
}
页: [1]
查看完整版本: 洛谷题目 P5711