下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。
内存溢出小编现在分享给大家,也给大家做个参考。
#include<stdio.h>#include<conio.h>static char *months[]={"January","February","march","April","May","June","July","August","September","October","November","December"};voID main(){static int days[12]={31,28,31,30,31};long int ndays,ldays,tydays,tdays;int d,i,m,fday,y;char ch;textcolor(liGHTGREEN);textbackground(liGHTBLUE);clrscr();printf("Enter year(1900 onwards) & month(number):");scanf("%d%d",&y,&m);while(1){ndays=(y-1)*365l;ldays=(y-1)/4-(y-1)/100+(y-1)/400;tdays=ndays+ldays;//total days//check for leap yearif((y%100==0 && y%400==0)||(y%4==0 && y%100!=0))days[1]=29;elsedays[1]=28;d=days[m-1];tydays=0;for(i=0;i<=m-2;i++)tydays=tydays+days[i];tdays=tydays+tdays;fday=tdays%7;cal(y,d);ch=getche();switch(ch){case 77:if(m==12){y++;m=1;}elsem++;break;case 72:y++;continue;case 75:if(m==1){y--;m=12;}elsem--;break;case 80:y--;continue;case 27:exit(0);}}}cal(int yr,int mo,int fd,int da){int i,r,c;char a;clrscr();gotoxy(25,2);printf("%s %d",months[mo-1],yr);textcolor(liGHTGREEN);gotoxy(5,5);printf("____________________________________________________");gotoxy(10,6);printf("MON TUE WED THU FRI SAT SUN");gotoxy(5,7);printf("____________________________________________________");r=9;c=11+(6*fd);for(i=1;i<=da;i++){gotoxy(c,r);if(c==47)textcolor(RED);elsetextcolor(liGHTGREEN);cprintf("%d",i);if(c<=41)c=c+6;else{c=11;r=r+1;}}textcolor(liGHTGREEN);gotoxy(5,15);printf("____________________________________________________");gotoxy(11,17);printf("UP-Next Year DOWN-Prev Year");gotoxy(11,18);printf("RIGHT-Next Month left-Prev Month");gotoxy(27,20);printf("Esc-Exit");return 0;}
以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
总结以上是内存溢出为你收集整理的C语言实现的万年历全部内容,希望文章能够帮你解决C语言实现的万年历所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)