system是c++中的一条指令,翻译过来是系统的意思
既然是系统windows库少不了
#include<windows.h>
键盘上用win+r键,打开cmd
在cmd里能用的,system也能用:
#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
int main(){
system("color 02");
return 0;
}
或者是
#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
int main(){
system("color 02");//颜色
system("shutdown-s-t 0");//立刻关机
system("shutdown-s-t 60");//60秒后关机
system("shutdown -a");//解除定时关机
system("ping 192.168.0.1 -l 65500 -t");//指定IP地址DDos
system("start https://blog.csdn.net");//打开某个网站
return 0;
}