#define _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main() {
char input[20] = { 0 };
// 设置关机命令,80秒后关机
system("shutdown -s -t 80");
// 使用循环替代 goto
while (1) {
printf("请注意,你的电脑将在80秒内关机,如果输入:我是猪,就取消关机\n");
scanf("%19s", input); // 限制输入长度以避免溢出
// 检查输入是否与 "我是猪" 相同
if (strcmp("我是猪", input) == 0) {
system("shutdown -a"); // 取消关机
printf("关机已取消。\n");
break; // 退出循环
}
else {
printf("输入不正确,请重新输入。\n");
}
}
return 0;
}