题解列表

筛选

滴滴滴

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define LEAP_YEAR(y) ((y%4==0&&y%100!=0)||y%400==0)int main(){    in……