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);
}
return 0;
}
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);
}
return 0;
}
//喊爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸爸!!!!!!!!!!!!!!!!!!!!
0
0