下文需要用到的头文件等
#include<bits/stdc++.h>
#include <Windows.h>
#include <stdlib.h>
#include <time.h>
#include <conio.h>
#define int long long
using namespace std;
光标跳转函数
void Cursor_Jump(int x, int y)//光标跳转
{
COORD cur;
cur.X=x;
cur.Y=y;
HANDLE handle=GetStdHandle(STD_OUTPUT_HANDLE);//获取控制台句柄
SetConsoleCursorPosition(handle,cur); //设置光标位置
}
光标隐藏函数
void Cursor_Hide()//隐藏光标
{
CONSOLE_CURSOR_INFO cur;
cur.dwSize=1;
cur.bVisible=false;
HANDLE handle=GetStdHandle(STD_OUTPUT_HANDLE); //获取控制台句柄
SetConsoleCursorInfo(handle,&cur);
}
标签:输出,handle,cur,int,C++,HANDLE,include,光标,页面
From: https://www.cnblogs.com/yexinqwq/p/16942847.html