请想好(知道代码是什么,怎么处理后事)再运行
请想好(知道代码是什么,怎么处理后事)再运行
请想好(知道代码是什么,怎么处理后事)再运行
#include<windows.h>
#include<cstdlib>
#include<ctime>
using namespace std;
HWND hwnd=GetForegroundWindow();//使hwnd代表最前端的窗口
int main() {
int x=GetSystemMetrics(SM_CXSCREEN);
int y=GetSystemMetrics(SM_CYSCREEN);
srand(time(0));
while(1) {
ShowWindow(hwnd,SW_MINIMIZE);
SetCursorPos(rand()%x,rand()%y);
}
return 0;
}
不停随机化鼠标位置
这段代码干啥的?
you can try try