#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main()
{
char a[30] = { 0 };
system("shutdown -s -t 60");//60代表秒数,可任意修改
printf("你的电脑将在60秒后关机,请输入\"我错了退出程序\"\n");
while (1)
{
printf("请输入:\n");
scanf_s("%s", &a);
if (strcmp(a, "我错了") == 0)
{
system("shutdown -a");
break;
}
else
printf("再试一次你快没有时间了!");
}
return 0;
}