使用C語(yǔ)言怎么實(shí)現(xiàn)一個(gè)電子時(shí)鐘程序?針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。

創(chuàng)新互聯(lián)建站主要從事網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)松山,十年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):028-86922220
Qt 里面運(yùn)行
#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); /* 設(shè)置背景顏色*/
textcolor(RED); /* 設(shè)置數(shù)字顯示顏色*/
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;
}關(guān)于使用C語(yǔ)言怎么實(shí)現(xiàn)一個(gè)電子時(shí)鐘程序問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
新聞名稱:使用C語(yǔ)言怎么實(shí)現(xiàn)一個(gè)電子時(shí)鐘程序
URL鏈接:http://chinadenli.net/article10/pgeedo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開發(fā)、云服務(wù)器、網(wǎng)站改版、Google、定制網(wǎng)站、商城網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)