// char password[20] = { 0 };
// system("shutdown -s -t 60"); // - system 头文件 -> <stdlib.h>
//again:
// printf("请注意:您的计算机将在60s后关机,请输入:我是猪,就会取消关机\n");
// scanf("%s", password);
// if (strcmp(password, "我是猪") == 0) // - strcmp 头文件 -> <string.h>
// {
// system("shutdown -a");
// }
// else
// {
// goto again;
// }
//char password[20] = { 0 };
//system("shutdown -s -t 60"); // - system 头文件 -> <stdlib.h>
//while(1)
//{
// printf("请注意:您的计算机将在60s后关机,请叫我:“大哥”,就会取消关机\n");
//scanf("%s", password);
//if (strcmp(password, "大哥") == 0) // - strcmp 头文件 -> <string.h>
// {
// system("shutdown -a");
// break;
// }
//}