#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("start cmd");
	}

    return 0;
}
//alt f4 

0 条评论

目前还没有评论...