提交时间:2023-12-14 18:47:03

运行 ID: 33673

#include <stdio.h> int main() { int t, n; scanf("%d", &t); while (t--) { scanf("%d", &n); //在这里写判断 n 是否为闰年的代码及输出结果 } return 0; }