0
0
已采纳
黄中阳
初级光能
初级光能
void clear(){
HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
COORD coordScreen = { 0, 0 };
SetConsoleCursorPosition( hConsole, coordScreen );
}
不闪屏清屏
直接调用clear()
0
0
0
0
刘宇航
修练者
修练者
3.
......
int pos[x][y];
for(int i=1;i<=x;i++){
for(int j=1;j<=y;j++){
pos[i][j]=mapn[i][j];
}
}
......
case 'c':
case 'C':
for(int i=1;i<=x;i++){
for(int j=1;j<=y;j++){
mapn[i][j]=pos[i][j];
Sleep(0);
}
}
......
暂时我只想到了3.
0
0
0
0