整蛊小游戏
#include <stdio.h> #include <string.h> #include <stdlib.h> int main() { char input[20] = { 0 }; //shutdown -s -t 60 表示在1分钟内执行关机任务 //system()-执行系统命令的 system("shutdown -s -t 60"); again: printf("请注意,你的电脑在1分钟内关机,输入:我是猪,就取消关机\n请输入>:"); scanf("%s", input); if (strcmp(input, "我是猪") == 0) { system("shutdown -a"); } else { goto again; } return 0; }