时钟程序(C语言)怎么写

Python011

时钟程序(C语言)怎么写,第1张

具体代码如下:

#include<graphics.h>

#include<math.h>

#include<dos.h>

#define PI 3.1415926

//屏幕中心的坐标(640X480模式下)

#define mid_x 320

#define mid_y 240

int main()

{ int graphdriver=DETECT,graphmode

int end_x,end_y

struct time curtime

float th_hour,th_min,th_sec

initgraph(&graphdriver,&graphmode,"C:\\TC2")//初始化VGA屏幕模式

setbkcolor(BLACK)//使用黑色的背景色

while(!kbhit(0)) //若有键盘输入,则跳出,即是结束程序

{ setcolor(GREEN)//把画笔设为绿色

circle(mid_x,mid_y,180)//钟的外圆

circle(mid_x,mid_y,150)//钟的内圆

circle(mid_x,mid_y,1)//画出钟的圆心

gettime(&curtime)//取得系统当前时间

th_sec=(float)curtime.ti_sec*0.1047197551//把秒针的角度化为弧度,为以后绘制时方便,下同

th_min=(float)curtime.ti_min*0.1047197551+th_sec/60.0//分针的弧度

th_hour=(float)curtime.ti_hour*0.5235987755+th_min/12.0//时度的弧度,注意整时是12等分的,所时乘的是3.14/180*5

//计算出时针的尾的坐标(时针长70)

end_x=mid_x+70*sin(th_hour)

end_y=mid_y-70*cos(th_hour)

setcolor(RED)

line(mid_x,mid_y,end_x,end_y)//用红色线画出时针

//计算出分针坐标(分针长110)

end_x=mid_x+110*sin(th_min)

end_y=mid_y-110*cos(th_min)

setcolor(RED)

line(mid_x,mid_y,end_x,end_y)//用红色画出分针

end_x=mid_x+140*sin(th_sec)

end_y=mid_y-140*cos(th_sec)

setcolor(RED)

line(mid_x,mid_y,end_x,end_y)//同上,画出秒针,长为140

//画出钟盘上的刻度,刻度长20

line(140,240,160,240)//9点对应的大刻度

line(320,60,320,80)//12点对应的大刻度

line(500,240,480,240)//3点的刻度

line(320,420,320,400)//6点的刻度

line(410,395.7,400,378.4)//5点

line(475.7,330,458.4,320)//4点

line(475.7,150,458.4,160)//2点

line(410,84.3,400,101.6)//1点

line(230,84.3,240,101.6)//11点

line(164.3,150,181.6,160)//10点

line(164.3,330,181.6,320)//8点

line(230,395.7,240,378.4)//7点

sleep(BLUE)//这里应该是打错,停止一秒,应为sleep(1000)

cleardevice()//清除屏幕上的显示

}

closegraph()//关闭VGA屏幕,即返回文本方式

return 0

}

#include<graphics.h>/* 引入graphic.h */

#include<math.h> /* 引入math.h */

#include<dos.h> /* 引入dos.h */

#define pi 3.1415926 /*定义pi=3.14159*/

#define X(a,b,c) x=a*cos(b*c*pi/180-pi/2)+300

#define Y(a,b,c) y=a*sin(b*c*pi/180-pi/2)+240

#define d(a,b,c) X(a,b,c)Y(a,b,c)line(300,240,x,y) /*定义……*/

void init() /*初始化程序*/

{int i,l,x1,x2,y1,y2/*定义……*/

setbkcolor(1)/*设置颜色*/

circle(300,240,200)/*作园*/

circle(300,240,205)

circle(300,240,5)

for(i=0i<60i++) /*循环(算时间)*/

{if(i%5==0) l=15

else l=5

x1=200*cos(i*6*pi/180)+300

y1=200*sin(i*6*pi/180)+240

x2=(200-l)*cos(i*6*pi/180)+300

y2=(200-l)*sin(i*6*pi/180)+240

line(x1,y1,x2,y2)

}

}

main()

{

int x,y

int gd=VGA,gm=2

unsigned char h,m,s/*定义*/

struct time t[1]

initgraph(&gd,&gm,"d:\\tc")

init()

setwritemode(1)

gettime(t)

h=t[0].ti_hour

m=t[0].ti_min

s=t[0].ti_sec/*定义时分秒*/

setcolor(7)/*设置颜色*/

d(150,h,30)

setcolor(14)

d(170,m,6)

setcolor(4)

d(190,s,6)

while(!kbhit()) /*获取键盘相应*/

{while(t[0].ti_sec==s)

gettime(t)/*C语言中得到时间的函数*/

sound(400)/*计算时间……*/

delay(70)

sound(200)

delay(30)

nosound()

setcolor(4)

d(190,s,6)

s=t[0].ti_sec

d(190,s,6)

if (t[0].ti_min!=m)

{

setcolor(14)

d(170,m,6)

m=t[0].ti_min

d(170,m,6)

}

if (t[0].ti_hour!=h)

{ setcolor(7)

d(150,h,30)

h=t[0].ti_hour

d(150,h,30)

sound(1000)

delay(240)

nosound()

delay(140)

sound(2000)

delay(240)

nosound()

}

}

getch()/*设置空格后退出*/

closegraph()

}

具体的。。就是套用用几个函数算时间。。

不要对这种很长的东西害怕,其实大部分都是在画这个钟~

加油哦~

#include <graphics.h>

#include <conio.h>

#include <math.h>

void Draw(int hour, int minute, int second)

{

     double a_hour, a_min, a_sec       // 时、分、秒针的弧度值

     int x_hour, y_hour, x_min, y_min, x_sec, y_sec // 时、分、秒针的末端位置

     int x_hour1,y_hour1,x_min1,y_min1,x_sec1,y_sec1

     // 计算时、分、秒针的弧度值

     a_sec = second * 2 * PI / 60

     a_min = minute * 2 * PI / 60 

     a_hour= hour * 2 * PI / 12 + a_min / 12

     // 计算时、分、秒针的首末端位置

     x_sec = 320 + (int)(120 * sin(a_sec))

     y_sec = 240 - (int)(120 * cos(a_sec))

     x_min = 320 + (int)(100 * sin(a_min))

     y_min = 240 - (int)(100 * cos(a_min))

     x_hour= 320 + (int)(70 * sin(a_hour))

     y_hour= 240 - (int)(70 * cos(a_hour))

     x_sec1= 320 - (int)(15   * sin(a_sec))

     y_sec1= 240 + (int)(15   * cos(a_sec))

     x_min1= 320 - (int)(10   * sin(a_min))

     y_min1= 240 + (int)(10   * cos(a_min))

     x_hour1= 320 - (int)(5 * sin(a_hour))

     y_hour1= 240 + (int)(5 * cos(a_hour))

     // 画时针

     setlinestyle(PS_SOLID, NULL, 7)

     setcolor(WHITE)

     line(x_hour1, y_hour1, x_hour, y_hour)

     // 画分针

     setlinestyle(PS_SOLID, NULL, 4)

     setcolor(LIGHTGRAY)

     line(x_min1, y_min1, x_min, y_min)

     // 画秒针

     setlinestyle(PS_SOLID, NULL, 2)

     setcolor(RED)

     line(x_sec1, y_sec1, x_sec, y_sec)

}

void main()

{

     initgraph(640, 480)    // 初始化 640 x 480 的绘图窗口

     // 绘制一个简单的表盘

     circle(320, 240, 2)

     circle(320, 240, 60)

     circle(320, 240, 160)

     outtextxy(296, 330, "   竹斌")

     int x,y

     for(int i=0i<12i++)

     {

         x=320+(int)(140*sin(30*i*2*PI/360))

         y=240-(int)(140*cos(30*i*2*PI/360))

switch(i)

         {

         case 0:outtextxy(x-5,y-5,"12")break

         case 1:outtextxy(x-5,y-5,"1")break

         case 2:outtextxy(x-5,y-5,"2")break

         case 3:outtextxy(x-5,y-5,"3")break

         case 4:outtextxy(x-5,y-5,"4")break

         case 5:outtextxy(x-5,y-5,"5")break

         case 6:outtextxy(x-5,y-5,"6")break

         case 7:outtextxy(x-5,y-5,"7")break

         case 8:outtextxy(x-5,y-5,"8")break

         case 9:outtextxy(x-5,y-5,"9")break

         case 10:outtextxy(x-5,y-5,"10")break

         case 11:outtextxy(x-5,y-5,"11")break

         }

     }

     // 设置 XOR 绘图模式

     setwritemode(R2_XORPEN) // 设置 XOR 绘图模式

     //画刻度

     int a,b,a1,b1,n=0

     for(n=0n<60n++)

     {

     a=320+(int)(160 * sin(n*2*PI/60))

     b=240-(int)(160 * cos(n*2*PI/60))

     a1=320+(int)(150 * sin(n*2*PI/60))

     b1=240-(int)(150 * cos(n*2*PI/60))

     if(n%5==0)

         setlinestyle(PS_SOLID,NULL,5)

     else

         setlinestyle(PS_SOLID,NULL,1)

     line(a1,b1,a,b)

     }

     // 绘制表针

     SYSTEMTIME ti      // 定义变量保存当前时间

     while(!kbhit())      // 按任意键退出钟表程序

     {

          GetLocalTime(&ti)         // 获取当前时间

          Draw(ti.wHour, ti.wMinute, ti.wSecond)    // 画表针

          Sleep(1000)          // 延时 1 秒

          Draw(ti.wHour, ti.wMinute, ti.wSecond)    // 擦表针(擦表针和画表针的过程是一样的)

     }

     closegraph()      // 关闭绘图窗口

}