#define _CRT_SECURE_NO_WARNINGS 1
#include <stdlib.h>
#include <Windows.h>
#include <stdio.h>
#include <string.h>
int main()//不输入我是猪就关机游戏,这个是goto法
{
char input[20] = {0};
system("shutdown -s -t 60");
again:
printf("您的电脑将在一分钟内关机,输入:\"我是猪\"可以取消关机。\n请输入:");
scanf("%s", &input);
if (strcmp(input,"我是猪") == 0)
{
system("shutdown -a");
printf("恭喜你,解除关机!");
}
else
{
goto again;
}
return 0;
}
int main()//不输入我是猪就关机游戏,这个是while循环法
{
char input[20] = { 0 };
system("shutdown -s -t 60");
while(1)
{
printf("您的电脑将在一分钟内关机,输入:\"我是猪\"可以取消关机。\n请输入:");
scanf("%s", &input);
if (strcmp(input, "我是猪") == 0)
{
system("shutdown -a");
printf("恭喜你,解除关机!");
break;
}
}
return 0;
}