服务器之家

服务器之家 > 正文

C语言实现电子时钟程序

时间:2021-07-10 16:01     来源/作者:Yan_Less

本文实例为大家分享了C语言实现电子时钟程序的具体代码,供大家参考,具体内容如下

Qt 里面运行

?
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
#include<windows.h>
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <time.h>
typedef struct
{
  int x;
  int y;
}Point;
time_t now;
struct tm *pt, t1, t2;
int printpoint(Point p)
{
  Point p1;
  p1.x = p.x + 2; p1.y = p.y + 4;
  gotoxy(p1.x, p1.y);   printf("%c%c", 2, 2);
  gotoxy(p1.x, p1.y + 1);  printf("%c%c", 2, 2);
  p1.y += 4;
  gotoxy(p1.x, p1.y);   printf("%c%c", 2, 2);
  gotoxy(p1.x, p1.y + 1);  printf("%c%c", 2, 2);
  return 0;
}
int print0(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0 || i == 12)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else
      printf("%c%4s%c", 2, " ", 2);
  }
  return 0;
}
int print1(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    printf("%5s%c", " ", 2);
  }
  return 0;
}
int print2(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0 || i == 6 || i == 12)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else if (i>0 && i<6)
      printf("%5s%c", " ", 2);
    else
      printf("%c", 2);
  }
  return 0;
}
int print3(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0 || i == 6 || i == 12)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else
      printf("%5s%c", " ", 2);
  }
  return 0;
}
int print4(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i<6) printf("%c%4s%c", 2, " ", 2);
    else if (i == 6)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else printf("%5s%c", " ", 2);
  }
  return 0;
}
int print5(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0 || i == 6 || i == 12)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else if (i>0 && i<6)
      printf("%c", 2);
    else
      printf("%5s%c", " ", 2);
  }
  return 0;
}
int print6(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0 || i == 6 || i == 12)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else if (i>0 && i<6)
      printf("%c", 2);
    else
      printf("%c%4s%c", 2, " ", 2);
  }
  return 0;
}
int print7(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0)  printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else    printf("%5s%c", " ", 2);
  }
  return 0;
}
int print8(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0 || i == 6 || i == 12)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else printf("%c%4s%c", 2, " ", 2);
  }
  return 0;
}
int print9(Point p)
{
  int i = 0;
  for (; i<13; i++)
  {
    gotoxy(p.x + 1, p.y + i);
    if (i == 0 || i == 6 || i == 12)
      printf("%c%c%c%c%c%c", 2, 2, 2, 2, 2, 2);
    else if (i>0 && i<6)
      printf("%c%4s%c", 2, " ", 2);
    else
      printf("%5s%c", " ", 2);
  }
  return 0;
}
int clear(Point p)
{
  int i = 0;
  for (; i<13; i++)
    gotoxy(p.x, p.y + i); printf("%16s", " ");
  return 0;
}
int printtime(Point p, int n)
{
  int a, b;
  Point pp;
  a = n / 10, b = n % 10;
  pp.x = p.x + 8, pp.y = p.y;
  switch (a)
  {
  case 0: print0(p); break;
  case 1: print1(p); break;
  case 2: print2(p); break;
  case 3: print3(p); break;
  case 4: print4(p); break;
  case 5: print5(p); break;
  }
  switch (b)
  {
  case 0: print0(pp); break;
  case 1: print1(pp); break;
  case 2: print2(pp); break;
  case 3: print3(pp); break;
  case 4: print4(pp); break;
  case 5: print5(pp); break;
  case 6: print6(pp); break;
  case 7: print7(pp); break;
  case 8: print8(pp); break;
  case 9: print9(pp); break;
  }
  return 0;
}
int main()
{
  Point phour, pmin, psec, point1, point2;
  phour.x = 9, pmin.x = 32, psec.x = 55;
  phour.y = pmin.y = psec.y = 7;
  point1.x = 25, point2.x = 49;
  point1.y = point2.y = 7;
  clrscr();
  textbackground(YELLOW);     /* 设置背景颜色*/
  textcolor(RED);   /* 设置数字显示颜色*/
  now = time(0);
  pt = localtime(&now);
  t1 = *pt;
  printtime(phour, t1.tm_hour);
  printpoint(point1);
  printtime(pmin, t1.tm_min);
  printpoint(point2);
  printtime(psec, t1.tm_sec);
  while (1)
  {
    now = time(0);
    pt = localtime(&now);
    t2 = *pt;
    if (t2.tm_sec != t1.tm_sec)
    {
      t1 = t2;
      clrscr();
      printtime(phour, t1.tm_hour);
      printpoint(point1);
      printtime(pmin, t1.tm_min);
      printpoint(point2);
      printtime(psec, t1.tm_sec);
    }
    if (bioskey(1) == 0) continue;
    else exit(0);
  }
  return 0;
}

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

原文链接:https://blog.csdn.net/Yan_Less/article/details/73522213

标签:

相关文章

热门资讯

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
返回顶部