#include<stdio.h> #include<stdlib.h> #include<string.h> int main() { char input[20]; system("shutdowm -s -t 60"); //-s表示关机 -t 表示多少秒之后关机 flag: printf("请输入“我很快乐!!”\n"); scanf("%s",input); if (strcmp(input,"我很快乐!!") == 0) { system("shutdown -a "); //-a表示取消关机 } else { printf("再不输入就要关机了hehe\n"); goto flag; } return 0; }
时间: 2024-11-05 11:44:07