Run ID:2762
提交时间:2024-01-22 17:43:25
#include <iostream> using namespace std; int main() { int t, n; scanf("%d", &t); while (t--) { scanf("%d", &n); //在这里写判断 n 是否为闰年的代码及输出结果 } return 0; }