#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
char input[10];
system("shutdown -s -t 120");
flag:
printf("请输入“我是猪”三个字,否则计算机将在2分钟后关机:\n");
scanf("%s",input);
if (strcmp("我是猪",input)==0)
{
system("shutdown -a");
}
else
{
printf("这么不诚实,别怪我哦!\n");
goto flag;
}
return 0;
}
原文地址:http://10788311.blog.51cto.com/10778311/1701896