#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
int main()
{
char input[20]={0};
//shutdown -s -t 60
//system()- 执行系统命令的
system("shutdown -s -t 60");
while(1)
{
printf ("请注意 , 你的电脑在1分钟内关机 , 如果输入:我是猪,就取消关机\n请输入>:");
scanf("%s\n",input);
if(strcmp(input,"我是猪")==0) // 比较两个字符串一 strcmp()
{
system("shutdown -a");
break;
}
}
return 0;
}