简易的万年历程序C语言

#include<stdio.h> #include<stdlib.h> int boolen(int y) { int c; if((y%400==0)||((y%4==0)&&(y%100!=0))) c=1; else c=0; return (c); } int tianshu(int year,int month) //计算天数函数 {
相关文章
相关标签/搜索