gpt4 book ai didi

C++实现类似延时停顿的打字效果

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 26 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章C++实现类似延时停顿的打字效果由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

能够定位光标位置,改变屏幕设置 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <iostream>
#include <windows.h>
#include <conio.h>
#include <stdlib.h>      //system函数所需头文件
#define stoptimelong 500  //Sleep函数以毫秒为单位,Sleep(500);表示停半秒
using namespace std;
 
//跳到屏幕指定坐标
 
void gotoxy( int x, int y)
{  CONSOLE_SCREEN_BUFFER_INFO  csbiInfo;
   HANDLE  hConsoleOut;
   hConsoleOut = GetStdHandle(STD_OUTPUT_HANDLE);
   GetConsoleScreenBufferInfo(hConsoleOut,&csbiInfo);
   csbiInfo.dwCursorPosition.X = x;
   csbiInfo.dwCursorPosition.Y = y;
   SetConsoleCursorPosition(hConsoleOut,csbiInfo.dwCursorPosition);
}
 
int main( void )
int x=14, y=5;
   gotoxy(x, y);
   printf ( "你好!" );
   Sleep(stoptimelong);
   system ( "color 10" );   //调用控制台颜色管理命令,可以改变屏幕和字体的颜色
   printf ( "欢" );
   Sleep(stoptimelong);
   printf ( "迎" );
   Sleep(stoptimelong);
   printf ( "来" );
   Sleep(stoptimelong);
   printf ( "到" );
   system ( "color 19" );
   Sleep(stoptimelong);
   printf ( "计" );
   Sleep(stoptimelong);
   printf ( "算" );
   Sleep(stoptimelong);
   printf ( "机" );
   system ( "color 37" );
   Sleep(stoptimelong);
   printf ( "冒" );
   Sleep(stoptimelong);
   printf ( "险" );
   system ( "color 46" );
   Sleep(stoptimelong);
   printf ( "世" );
   Sleep(stoptimelong);
   printf ( "界" );
   Sleep(stoptimelong);
   printf ( "!" );
   Sleep(stoptimelong);
   cout<<endl;
   getch();
   return 0;
}

演示图片 。

C++实现类似延时停顿的打字效果

以上所述就是本文的全部内容了,希望能够对大家学习C++有所帮助.

最后此篇关于C++实现类似延时停顿的打字效果的文章就讲到这里了,如果你想了解更多关于C++实现类似延时停顿的打字效果的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com