【#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;
}

附搞笑圖片:

在這裏插入圖片描述



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章