C语言日历

/*
无数组,无方法,刚学C语言,有错莫怪
*/

#include
#include
#include
int main() {
	int year,month,day,choice,sum=0,m=1;
	do {
		sum=0,m=1;
		do {
			system("color FD");
			system("cls");
			printf("\n\t\t\t\t\t至上万年历欢迎您的浏览!\n\n");
			printf("\t\t\t\t\t请输入您要查询的年份:");
			scanf("%d",&year);
			if(year<1900) {
				printf("\t\t\t\t\t本万年历暂未收录1900年之前的日历!请重新输入!");
				Sleep(500);
				system("cls");
			}
		} while(year<1900);
		printf("\t\t\t\t\t请输入您要查询的月份:");
		scanf("%d",&month);
		if(month<1||month>12) {
			do {
				printf("\t\t\t\t\t一年只有12个月!请重新输入!");
				Sleep(500);
				system("cls");
				printf("\n\t\t\t\t\t至上万年历欢迎您的浏览!\n\n\t\t\t\t\t请输入要查询的年份: %d\n\t\t\t\t\t请输入要查询的月份:",year);
				scanf("%d",&month);
			} while(month<1||month>12);
		}
		year=year-1900;
		for(int i=0; i

C语言日历_第1张图片

你可能感兴趣的:(C语言)