服务器之家

服务器之家 > 正文

C语言实现万年历

时间:2021-08-04 12:11     来源/作者:Roninwz

C语言实现的万年历显示,按下上下左右按键来更换日期和年份,供大家参考,具体内容如下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include<conio.h>
typedef struct today
{
 int day;
 int month;
 int year;
} today;
 
int day_cankao[2][13]={
 {0,31,28,31,30,31,30,31,31,30,31,30,31},
 {0,31,29,31,30,31,30,31,31,30,31,30,31}
};
char *week[]=
{
 "Sun","Mon","Tue","Wen","Thu","Fir","Sat"
};
struct tm *todayuse;//struct tm定义c语言中time的结构体
today today_current;
int getweekday(today today_usenow)
{
 // w = y + [y/4] + [ c/4 ] – 2c+ [13 * (m+1) / 5] + d – 1
 //其中,c是年份的前两位,y是年份的后两位,m是月份,d是日期,这里需要注意的是,如果是1月和2月,c和y需要按照上一年来取值。
 int w=0;
 
 int year=today_usenow.year;
 int month=today_usenow.month;
 if(today_usenow.month==1 || today_usenow.month==2)
 {
 month+=12;
 year--;
 }
 int y=year%100;
 int c=year/100;
 int m=month;
 
 w=y + y/4 + c/4 - 2*c+ 26* (m+1) / 10 + today_usenow.day -1;
 while(w<0)
 {
 w+=7;
 }
 return (w%7);
 
}
int is_leap(int year)
{
 
 if( (year%4==0 && year%100!=0) || (year%400==0))
 {
 return 1;
 }
 else
 return 0;
}
int getmonthdays(int year,int month)
{
 return day_cankao[is_leap(year)][month];
}
 
 
void print_calendar(today today_usenow)
{
 printf("---------------------------\n");
 printf("Sun Mon Tue Wen Thu Fir Sat\n");
 int firstday=0;
 today today_usehere=today_usenow;
 today_usehere.day=1;
 int day=getweekday(today_usehere);//日期前
 //int daysuseafter
 int days=getmonthdays(today_usenow.year,today_usenow.month);//月总数
 // 0 1 2 3 4 5 6 // 6
 int daysbefore=0;
 if((today_usenow.month-1)==0)
 {
 //现在为1月,去年的十二月份
 daysbefore=getmonthdays(today_usenow.year-1,12);
 // printf("%d is",daysbefore);
 }
 else
 {
 
 
 daysbefore=getmonthdays(today_usenow.year,today_usenow.month-1);
 }
 int daysbefoeit=daysbefore-day+1;
 printf("");
 int count=1;
 if(day==0)
 {
 daysbefoeit-=7;
 for(int i=0;i<day+7;i++)
 {
  
  printf("%d ", daysbefoeit);
  daysbefoeit++;
  
 }
 printf("\n");
 count=7;
 }
 else
 {
 for(int i=0;i<day;i++)
 {
  printf("%d ", daysbefoeit);
  daysbefoeit++;
 }
 count=day;
 }
 int m=1;
 for(int i=0;i<=6-day;i++)
 {
 if(m<10)
 {
  printf(" %d ",m);
 }
 else
 {
 
 
  printf("%d ",m);
 }
 
 m++;
 }
 printf("\n");
 if(day==0)
 {
 count=14;
 }
 else
 {
 count=7;
 }
 int hang=0;
 while(m<=days)
 {
 if(m<10)
 {
  printf(" %d ",m);
 }
 else
 {
 
 
  printf("%d ",m);
 }
 hang++;
 if(hang==7)
 {
  printf("\n");
  hang=0;
 }
 
 m++;
 }
 if(day==0)
 {
 count=days+7;
 }
 else
 {
 count=day+days;
 }
 int newmonth=1;
 for(int j=hang;j<7;j++)
 {
 
 if(newmonth<10)
 {
 printf(" %d ",newmonth);
 }
 else
 {
 
 
 printf("%d ",newmonth);
 }
 
 newmonth++;
 }
 printf("\n");
 count=count+7-hang;
 for(int j=0;j< 42-count;j++)
 {
 if(newmonth<10)
 {
 printf(" %d ",newmonth);
 }
 else
 {
 
 
 printf("%d ",newmonth);
 }
 newmonth++;
 }
 
 
}
//int getmonth
 
int main()
{
 time_t timep;
 struct tm *p;
 time(&timep);
 p =localtime(&timep); //此函数获得的tm结构体的时间,是已经进行过时区转化为本地时间
 //p = gmtime(&timep); //把日期和时间转换为格林威治(GMT)时间的函数
 
 /*printf("Year: %d\n", 1900+p->tm_year);
 printf("Month: %d\n", 1+p->tm_mon);
 printf("Day: %d\n", p->tm_mday);
 printf("Hour: %d\n", p->tm_hour);
 printf("Minute: %d\n", p->tm_min);
 printf("Second: %d\n", p->tm_sec);
 printf("Weekday: %d\n", p->tm_wday);
 printf("Days: %d\n", p->tm_yday);
 printf("Isdst: %d\n", p->tm_isdst);
 */
 
 //printf("%d",day_cankao[0][12]);
 today_current.year=1900+p->tm_year;
 today_current.month=1+p->tm_mon;
 today_current.day= p->tm_mday;
 today use=today_current;
 int c1,c2;
 printf(" %d 年 %d 月 %d 日\n",today_current.year,today_current.month,today_current.day);
 print_calendar(today_current);
 while(1)
 {
 c1 = getch();
 if(c1==27)
 {
 printf("您已经退出系统");
 break;
 }
 if(c1==110)
 {
 printf(" %d 年 %d 月 %d 日\n",today_current.year,today_current.month,today_current.day);
 //printf("%d \n",getweekday(today_current));
 
 print_calendar(today_current);
 use=today_current;
 continue;
 }
 c2 = getch();
 //printf( "%d %d",c1,c2);
 
 if(c1==224 && c2==72)
 {
 use.month+=1;
 if(use.month==13)
 {
 use.month=1;
 use.year+=1;
 }
 printf(" %d 年 %d 月 %d 日\n",use.year,use.month,use.day);
 //printf("%d \n",getweekday(today_current));
 
 print_calendar(use);
 
 }
 if(c1==224 && c2==80)
 {
 use.month-=1;
 if(use.month==0)
 {
 use.month=12;
 use.year-=1;
 }
 printf(" %d 年 %d 月 %d 日\n",use.year,use.month,use.day);
 //printf("%d \n",getweekday(today_current));
 
 print_calendar(use);
 }
 if(c1==224 && c2==75)
 {
 use.year-=1;
 printf(" %d 年 %d 月 %d 日\n",use.year,use.month,use.day);
 //printf("%d \n",getweekday(today_current));
 
 print_calendar(use);
 }
 if(c1==224 && c2==77)
 {
 use.year+=1;
 printf(" %d 年 %d 月 %d 日\n",use.year,use.month,use.day);
 //printf("%d \n",getweekday(today_current));
 
 print_calendar(use);
 }
 printf("\n");
 printf("按上下按钮,进行月份变换\n");
 printf("按左右按钮,进行年份变换\n");
 printf("按ESC按键,退出系统\n");
 printf("按N按钮,查看当前日期\n");
 }
 //上 224 72
 //下 224 80
 //左 224 75
 //右 224 77
 //esc 27
 // n 110
 
 return 0;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/qq_35038153/article/details/71036605

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
2021德云社封箱演出完整版 2021年德云社封箱演出在线看
2021德云社封箱演出完整版 2021年德云社封箱演出在线看 2021-03-15
返回顶部