c语言gotoxy()函数的调用:#include<windows.h>void gotoxy(int x,int y){ COORD pos; pos.X=x;//hhh pos.Y=y; SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),pos);