随笔分类 -  C语言之路

摘要:#include<stdio.h> #include<string.h> #include<time.h> //#include<conio.h> #include<stdlib.h> #include<windows.h>int isleapyear(int year) //判断该年是 闰年 还是 平年 { if((year%4==0&&year%100!=0) || (year%400==0) ) //判断该年是 闰年 return 1; else return 0; } int firstdayofy 阅读全文

posted @ 2011-05-17 16:10 android开发实例 阅读(418) 评论(0) 推荐(0)

导航