close
void gotoxy(int x, int y) {
COORD c;
c.X = x - 1;
c.Y = y - 1;
SetConsoleCursorPosition
(GetStdHandle(STD_OUTPUT_HANDLE), c);
}
全站熱搜
void gotoxy(int x, int y) {
COORD c;
c.X = x - 1;
c.Y = y - 1;
SetConsoleCursorPosition
(GetStdHandle(STD_OUTPUT_HANDLE), c);
}