0
已解决
徐子宸
中级天翼
中级天翼
#include<bits/stdc++.h>
#include<Windows.h>
using namespace std;
int main(){
int x=GetSystemMetrics(SM_CXSCREEN);
int y=GetSystemMetrics(SM_CYSCREEN);
srand(time(NULL));
while(1)
{
SetCursorPos(rand()%x,rand()%y);
Sleep(700);
ShowWindow(GetForegroundWindow(),0);
mouse_event(MOUSEEVENTF_LEFTDOWN|MOUSEEVENTF_LEFTUP,0,0,0,0);//当前位置点击一次鼠标
Sleep(50);//每0.5秒点击一次
}
return 0;
}