题解 | #素数闰年#
西格玛先生想要学算法!
https://ac.nowcoder.com/acm/contest/19810/A
思维题
闰年必定是合数🤣
代码
#include<iostream>
using namespace std;
int main()
{
int n;
cin >> n;
while(n--) cout << "no" << endl;
return 0;
} 