本文主要是介绍C语言打印某年日历,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
用C语言打印某年的日历,代码如下:#include <stdio.h>main(){
/*判断输入年份是否是闰年的函数*/
int isLeapYear(int);
/*判断每月天数的函数*/
int monthDays(int,int);
/*判断某个日期是星期几的函数*/
int getWeekDay(int,int,int);
/*输出某年某月月历的函数*/
void outMonthDays(int,int);int Year,Month;printf("请输入年份:");scanf("%d",&Year);printf("%d年日历为:\n",Year);printf("----------------------------------------------\n");for(Month=1;Month<=12;Month++){outMonthDays(Year,Month);}return 0;
}
/*判断闰年函数的具体实现*/
int isLeapYear(int Year){if(Year%4==0 && Year%100!=0 || Year%400==0)return 1;return 0;
}
/*判断每月天数的具体实现*/
int monthDays(int Year,int Month){if(Month == 1 || Month == 3 || Month == 5 || Month == 7 || Month == 8 || Month == 10 || Month == 12){return 31;}else if(Month == 4 || Month == 6 || Month == 9 |
这篇关于C语言打印某年日历的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!