gotoxy()函数改变光标位置的实现方法
作者:互联网
#include <stdio.h>
#include <windows.h>
void gotoxy(int x, int y) {
COORD pos = {x,y};
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);// 获取标准输出设备句柄
SetConsoleCursorPosition(hOut, pos);//两个参数分别是指定哪个窗体,具体位置
}
int main(){
gotoxy(25,25);
printf("HELLO");
system("PAUSE");
}
标签:hOut,25,函数,int,pos,gotoxy,include,光标 来源: https://blog.csdn.net/lanzh_syf/article/details/100990197