반응형
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>
#include <windows.h>
using namespace std;
 
/*콘솔 커서 위치 이동*/
void gotoxy(int x, int y) {
    COORD pos = { x,y };
    SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), pos);
}
 
int main(void) {
    gotoxy(63); // x좌표가 y좌표보다 크기가 2배 정도 작다.
    cout << ". -> (6,3)";
    return 0;
}
cs

include <windows.h>

void gotoxy(int x, int y) {

    COORD pos = { x,y };

    SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), pos);

}

 

→ x축

↓ y 축

x좌표가 y좌표보다 크기가 2배 정도 작다.

호출 ex) gotoxy(6, 3);

반응형

+ Recent posts