#include
#include
#include
int main()
{
char input[20] = { 0 };
system("shutdown /s /t 60");//system是命令执行,需要头文件stdlib.h
printf("你的计算机将在60秒后关机,如果输入:我是猪,则取消关机!n");
again://goto跳转的位置
printf("自己乖乖承认吧,不然真的关机了!输入:我是猪,不然关机了,别怪我!");
scanf("%s", input);
if (strcmp(input, "我是猪") == 0)//比较字符串用 strcmp,需要头文件string.h
{
system("shutdown /a");
}
else
{
goto again;
}
return 0;
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)