欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

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

时间:2021-01-31 08:11:08|栏目:C代码|点击:

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

#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语言实现词法分析器

本文标题:C++实现类似延时停顿的打字效果

本文地址:http://www.codeinn.net/misctech/54575.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有