first commit

master
parent 4ae1c2d07f
commit 506afe395d

Binary file not shown.

@ -12,6 +12,15 @@
using namespace std;
// ČĽšâąę
void qgb ( )
{
HANDLE handle = GetStdHandle ( STD_OUTPUT_HANDLE );
CONSOLE_CURSOR_INFO CursorInfo;
GetConsoleCursorInfo ( handle, &CursorInfo );
CursorInfo.bVisible = false;
SetConsoleCursorInfo ( handle, &CursorInfo );
}
// 判断所选位置是否可下 不可下返回-1 可以下返回0
int IsNULL ( int array[3][3], int x, int y )
@ -275,4 +284,3 @@ int main ( )
return 0;
}

Binary file not shown.
Loading…
Cancel
Save