资源描述:
《C语言课程设计实验报告.doc》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、西安工程大学C语言课程设计实验报告计算机科学学院软件工程(2)班成旭飞41209050202一、题目及功能描述题目:万年历的设计利用C语言设计出万年历,使其实现如下要求1、输入年月,输出该月的月历2、输入错误时能重新输入;3、简单易操作。二、实验程序框图三、软件设计与编码#includemain(){intn,y,i,j,count=0;longintS;do{printf("请输入正确的年份:");scanf("%d",&n);printf("请输入正确的月份:");scanf
2、("%d",&y);}while((n<1)
3、
4、(y<1)
5、
6、(y>12));printf("日一二三四五六");if((n%4==0&&n%100!=0
7、
8、n%400==0)&&(y==2)){S=(n-1980)/4*1461%7;if(S<0)S=7+S;switch(S){case0:for(count;count<5;count++)printf("");for(i=1;i<=29;i++,count++){if(count%7==0)printf("");printf("%4d",i)
9、;}break;case1:for(count;count<6;count++)printf("");for(i=1;i<=29;i++,count++){if(count%7==0)printf("");printf("%4d",i);}break;case2:for(i=1;i<=29;i++,count++){if(count%7==0)printf("");printf("%4d",i);}break;case3:for(count;count<1;count++)printf("");f
10、or(i=1;i<=29;i++,count++){if(count%7==0)printf("");printf("%4d",i);}break;case4:for(count;count<2;count++)printf("");for(i=1;i<=29;i++,count++){if(count%7==0)printf("");printf("%4d",i);}break;case5:for(count;count<3;count++)printf("");for(i=1;i<=29;i+
11、+,count++){if(count%7==0)printf("");printf("%4d",i);}break;case6:for(count;count<4;count++)printf("");for(i=1;i<=29;i++,count++){if(count%7==0)printf("");printf("%4d",i);}break;}printf("");}else{if(n%4==0&&n%100!=0
12、
13、n%400==0)S=((n-1980)*365+(n-1980)
14、/4)%7;elseS=((n-1980)*365+(n-1980)/4+1)%7;if(S<0)S=7+S;switch(y){case1:j=(S+2)%7;for(count;count15、;i<=28;i++,count++){if(count%7==0)printf("");printf("%4d",i);}break;case3:if(n%4==0&&n%100!=0
16、
17、n%400==0)j=(S+6)%7;elsej=(S+5)%7;for(count;count18、4==0&&n%100!=0
19、
20、n%400==0)j=(S+2)%7;elsej=(S+1)%7;for(count;count21、
22、n%400==0)j=(S+4)%7;elsej=