常用函数\Sleep

简介: 常用函数\Sleep

Sleep函数包含在Windows.h头文件中(使用时首字母要大写)

Sleep函数的单位是毫秒,可以在参数中设定时间长度

可以使用Sleep达到延时的目的,而不是一下全部执行完

简单的使用方法见下面的函数定义部分

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<Windows.h>
//函数声明
void print(int len,char song[]);
//主函数
int main()
{
  char song_1[70] = "你是我患得患失的梦,我是你可有可无的人";
  char song_2[70] = "你是我辗转反侧的梦,我是你如梦山河的故人";
  char title[25] ="------《写给黄淮》";
 
  int len=0;
  print(len, song_1);
  Sleep(200);
  print(len, song_2);
  printf("\n\t\t\t\t");
  print(len,title);
 
  system("pause");
  return 0;
}
//函数定义
void print(int len,char song[])
{
  int i;
  len = strlen(song) + 1;
  for (i = 0; i < len; i++)
  {
    printf("%c", song[i]);
    Sleep(100);
  }
  printf("\n");
}


目录
相关文章
|
Python
Python time sleep()方法
t – 推迟执行的秒数。 返回值 该函数没有返回值。
89 0
|
25天前
|
Python
python的时间操作time-函数介绍
【10月更文挑战第19天】 python模块time的函数使用介绍和使用。
27 4
|
1月前
|
前端开发 JavaScript
前端:实现一个 sleep 函数
在前端开发中,实现一个 `sleep` 函数可以用来暂停代码执行,模拟延迟效果,常用于测试或控制异步操作的节奏。该函数通常基于 `Promise` 和 `setTimeout` 实现,简单易用。
|
Python
Python 3.5 RuntimeError: can&#39;t start new thread
/*********************************************************************** * Python 3.5 RuntimeError: can't start new thread * 说明: * 测试的时候线程开得太多了,导致软件开始,不再能够被处理,卡死。
6458 0
|
5月前
|
编译器 测试技术
常用函数\clock
常用函数\clock
28 1
|
6月前
|
Unix 程序员 编译器
C++ Sleep 函数
C++ Sleep 函数
233 1
|
Linux 程序员 编译器
【C语言】Sleep()函数----详解
【C语言】Sleep()函数----详解
604 0
|
PHP
php sleep()函数在sleep什么?
php sleep()函数在sleep什么?
57 0
|
存储 Python
Python threading Local()函数用法:返回线程局部
Python threading Local()函数用法:返回线程局部
|
物联网 Linux C语言
Wait 函数|学习笔记
快速学习 Wait 函数
Wait 函数|学习笔记