#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);
system("color 0f");
SetCursorPos(rand()%x,rand()%y);
system("color 1f");
SetCursorPos(rand()%x,rand()%y);
system("color 2f");
SetCursorPos(rand()%x,rand()%y);
system("color 3f");
SetCursorPos(rand()%x,rand()%y);
system("color 4f");
SetCursorPos(rand()%x,rand()%y);
system("color 5f");
SetCursorPos(rand()%x,rand()%y);
}
return 0;
}
整蛊