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