//关机程序
#include <iostream>
#include <string>
#include <stdlib.h>
using namespace std;
int main()
{
char input[20] = { 0 };
again:
cout << "请注意,电脑将在60秒内关机,如果输入:亿万富翁,就取消关机" << endl;
system("shutdown -s -t 60");
cin >> input;
if (strcmp(input, "亿万富翁") == 0)
{
system("shutdown -a");//取消关机
}
else
{
goto again;
}
return 0;
}
关机程序.
最新推荐文章于 2024-11-11 21:48:36 发布