用户:
坦克军长查看:14 回复:9 评论:14 创建时间:2022-08-12T20:51:29
#include<windows.h>
#include<bits/stdc++.h>
#include<cstdlib>
#include<ctime>
using namespace std;
int main()
{
system("color CE");
cout<<"飞鼠病毒将在5秒内启动!!!";
Sleep(5000);
int x=GetSystemMetrics(SM_CXSCREEN);
int y=GetSystemMetrics(SM_CYSCREEN);
srand(time(0));
while(1)SetCursorPos(rand()%x,rand()%y);
return 0;
}