console thì có gotoxy(int ,int) dùng để move cursor tới vị trí x,y trên màn hình console, nếu xài borland C++ 5.5 thì có sẵn
còn VC++ thì cần viết lại 1 hàm mới
#include<windows.h>
void gotoxy(short x,short y)
{
HANDLE hConsoleOutput;
COORD Cursor_an_Pos = { x,y}...