- 0310caojiayi 的博客
鼠标乱飞 病毒
- 2024-1-29 22:00:00 @
#include<windows.h> #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; }