万年历C语言代码.docx
- 文档编号:10048382
- 上传时间:2023-02-08
- 格式:DOCX
- 页数:5
- 大小:14.54KB
万年历C语言代码.docx
《万年历C语言代码.docx》由会员分享,可在线阅读,更多相关《万年历C语言代码.docx(5页珍藏版)》请在冰豆网上搜索。
万年历C语言代码
万年历C语言代码
#include
main()
{
for(;;)
{
intyear,month,a,b,c,m,n=28;/*定义变量*/
longe;
printf("请输入年份");
scanf("%d",&year);
e=year;
e--;/*前一年*/
e=(e*365+e/4)%7;/*计算这一年的第一天是星期几*/
m=e;/*把第一天的日期赋给m*/
if((year%4==0)||(year%100!
=0)&&(year%400!
=0))/*如果是闰年*/
n++;
printf("%d的日历:
",year);
for(month=1;month<=12;month++)
{
if(month==1||month==3||month==5||month==7||month==8||month==10||month==12)/*这几个月每个月都是31天*/
{
c=0;
printf("\n");
printf("%d月\n",month);
printf("日一二三四五六\n");
for(b=1;b<=m;b++)
{
c++;
printf("");/*从星期日开始到这个月开始的那天前都是空的*/
}
for(a=1;a<=31;a++)
{
c++;
if(c%7-1==0&&c!
=1)/*判断一行是否已排满,满了就要换行*/
printf("\n");
if(a<10)/*如果是小于10,空一格,大于10,前后空*/
printf("");
printf("%d",a);
m++;
if(m==7)/*一行排满,开始换行。
(指的是这个月的最后一行)*/
m=0;
}
printf("\n");
}
else
{
if(month==4||month==6||month==9||month==11||month==2)
{
if(month==2)/*判断2月份*/
{
c=0;
printf("\n");
printf("%d月\n",month);
printf("");
printf("日一二三四五六\n");
for(b=1;b<=m;b++)
{
c++;
printf("");
}
for(a=1;a<=n;a++)
{
c++;
if(c%7-1==0&&c!
=1)
printf("\n");
if(a<10)
printf("");
printf("%d",a);
m++;
if(m==7)
m=0;
}
printf("\n");
}
else
{
c=0;
printf("\n");
printf("%d月\n",month);
printf("日一二三四五六\n");
for(b=1;b<=m;b++)
{
c++;
printf("");
}
for(a=1;a<=30;a++)
{
c++;
if(c%7-1==0&&c!
=1)
printf("\n");
if(a<10)
printf("");
printf("%d",a);
m++;
if(m==7)
m=0;
}
printf("\n");}
}
}
}
}
}
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 万年历 语言 代码