Skip to content

Instantly share code, notes, and snippets.

@pinglunliao
Last active November 5, 2019 08:24
Show Gist options
  • Save pinglunliao/b0e12b84eb84dd24a404 to your computer and use it in GitHub Desktop.
Save pinglunliao/b0e12b84eb84dd24a404 to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main() {
short y;
while(cin >> y){
y = (y % 4 == 0 && y % 100 != 0) || (y % 400 == 0);
cout << (y == 1?"閏年":"平年") << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment