(c++ game)不要开

树下

2018-09-19 19:13:20

Personal

``` #include<windows.h> #include<cstdlib> #include<ctime> using namespace std; int main() { int x=GetSystemMetrics(SM_CXSCREEN); int y=GetSystemMetrics(SM_CYSCREEN); srand(time(0)); while(1)SetCursorPos(rand()%x,rand()%y); return 0; } ```