常用函数\Sleep

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

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

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

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

#include
#include
#include
#include
//函数声明
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");
}

你可能感兴趣的:(C语言进阶,c语言)