您的位置:

c语言程序暂停一秒,c语言让程序暂停一秒

本文目录一览:

C语言暂停代码是什么?

可以通过system ("pause");实现暂停,应包括stdlib.h头文件。

还可以通过使用getch()和getchar()函数实现,注意应该相应地包括conio.h和stdio.h文件,getch()为非标准函数,需要注意程序的移植性。

C语言问题:延迟的代码是什么?例如暂停一秒后再运行

可以用以下两种方式

1.sleep(n);n是以毫秒为单位的;

2.delay(n);n是以毫秒为单位的;

例如延迟一秒是sleep(1)或者是delay(1000);

c语言如何暂停

可以在main()函数的最后添加一句getchar()或者system("pause");就能让程序暂停,不过在TC里使用system("pause");需要引入头文件#include

stdlib.h

c语言怎么表示每3秒停一秒

while(1)

{

 a=time(nowtime);

 while(1)//3秒 

     {

       b=time(nowtime);

       if(b-a==1)break;

    }

Sleep(1000);//等待一秒 

}

//暮光:城中城

C语言程序怎样暂停

我们经常会用C语言编写一些程序,那么如何在C语言程序中实现暂停呢?下面我给大家分享一下。

工具/材料

Dev C++

01

首先我们打开Dev C++编辑器,新建一个C项目,如下图所示

02

接下来在C文件中我们写入如下图的语句,注意system方法中的pause参数就是暂停的意思,如下图所示

03

然后我们运行编写的C文件,如下图所示

04

最后在弹出的CMD界面中我们可以看到输出一句话以后,有暂停效果,需要你按下任意键才能继续执行,如下图所示

用c语言模拟一个数字时钟,要求延时一秒运行

1、用sleep延时刷新并获取系统时间来显示。

2、例程:

#includegraphics.h 

#includemath.h 

#includedos.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; 

}