📅  最后修改于: 2022-03-11 14:57:54.990000             🧑  作者: Mango
#include // header file for gotoxy
// Gotoxy function
COORD coord= {0,0}; // this is global variable
void gotoxy(int x,int y)
{
coord.X=x;
coord.Y=y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),coord);
}