c语言中 gotoxy() 函数的使用

转自  https://blog.csdn.net/radjedef/article/details/79028329windows #include <stdio.h> #include <windows.h> void gotoxy(int x, int y) { COORD pos = {x,y}; HANDLE hOut = GetStdHandle(STD_OUTPUT_
相关文章
相关标签/搜索