c语言打印任意年份日历
#include <stdio.h>long int f(int year,int month){ if(month<3) return year-1; else return year;}long
c语言打印任意年份日历