#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char a[10] = { 0 }; //system控制的是电脑中的cmd
system("shutdown -s -t 60"); //system的头文件为stdlib.h shutdown-s的意思是关机-t是时间
aaaa:
printf("请注意你的电脑将在六十秒内关机,输入我是猪就停止关机。\n请输入:");
scanf("%s", &a);
if (strcmp(a, "我是猪") == 0) //strcmp的作用是比较字符串 头文件为string.h
{
printf("你确实是猪");
system("shutdown -a");
}
else
{
printf("在给你一次机会");
goto aaaa; //goto函数的使用 直接跳到aaaa的位置
}
return 0;
}