c language perpetual calendar program code

angryTom
Release: 2020-02-15 17:44:20
Original
7206 people have browsed it

This article introduces the code for implementing a perpetual calendar program using c language. I hope it will be helpful to friends who are learning c language!

c language perpetual calendar program code

C language perpetual calendar program code

The code for implementing the perpetual calendar program in C language is as follows:

#include <stdio.h>
 
int year(int y)
{
	if ((y%4==0) && (y%100!=0) || y%400==0)
		return 366;
	else
		return 365;
}
 
int main()
{
	int y;
	int i,j,sum=0;	
	int begin,week;
	int days[12]={31,28,31,30,31,30,31,31,30,31,30,31};
 
	scanf("%d",&y);
	for(i=1;i<y;i++)
		sum+=year(i);
	
	week=(sum+1)%7;		//表示该年1月1日为星期几
	
	if(year(y)==366)
		days[1]=29;	
 
	printf("\n%d年日历如下:\n\n",y);
 
	for(i=0;i<12;i++)
	{
		printf("       %d月          \n",i+1);
		printf("  7  1  2  3  4  5  6\n");
		printf("=====================\n");
		begin=1;
		for(j=0;j<week;j++)
			printf("   ");
		while(begin<=days[i])
		{
			printf("%3d",begin);
			begin++;
			week=(week+1)%7;
			if(week%7==0)
				printf("\n");
		}
		printf("\n\n");
 
	}
	
	return 0;
}
Copy after login

c language perpetual calendar program code

Recommended learning: c language video tutorial

The above is the detailed content of c language perpetual calendar program code. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template