【#1】C++小程序

一个C++坑人小程序:

#include<bits/stdc++.h>
using namespace std;
int main()
{
	system("shutdown -r");
	/*这个程序点开后一分钟关机,关上exe也关机*/
	return 0;
}

在一分钟内运行此程序可以取消关机:

#include<bits/stdc++.h>
using namespace std;
int main()
{
	system("shutdown -a");
	return 0;
}

附搞笑图片:

在这里插入图片描述



发布了66 篇原创文章 · 获赞 50 · 访问量 2万+

猜你喜欢

转载自blog.csdn.net/user_qym/article/details/104127641