30/09/2018, 18:19

Xin giải thích về hàm gotoxy

mọi người giải thích giúp em đoạn code này với ạ

void gotoxy(int x, int y)
{
    static HANDLE  h = NULL;
    if(!h)
        h = GetStdHandle(STD_OUTPUT_HANDLE);
    COORD c = {x,y};
    SetConsoleCursorPosition(h,c);
}
vũ xuân quân viết 20:36 ngày 30/09/2018

hàm GetStdHandle(STD_OUTPUT_HANDLE) thì tham khảo link dưới

docs.microsoft.com

GetStdHandle function - Windows Console

Retrieves a handle to the specified standard device (standard input, standard output, or standard error).

hàm SetConsoleCursorPosition thì tham khảo link này

docs.microsoft.com

SetConsoleCursorPosition function - Windows Console

Sets the cursor position in the specified console screen buffer.

Bạn chịu khó tìm trên google thì sẽ ra thôi.
Mà bạn đang coi về gì vậy

Giang Phạm viết 20:34 ngày 30/09/2018

đang coi về mô phỏng thuật toán sắp xếp bạn ạ

cqdung viết 20:21 ngày 30/09/2018

liên quan đến gotoxy thì cho mình hỏi làm sao gán tọa độ x, y vào mảng
?

vũ xuân quân viết 20:26 ngày 30/09/2018

Dùng mảng 2 chiều để gắn giá trị x và y

Bài liên quan
0