评论

收藏

[C++] 2021125.26 关机代码

编程语言 编程语言 发布于:2021-12-07 15:10 | 阅读数:545 | 评论:0

#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
#include<stdio.h>
#include<math.h>
#include<stdlib.h>
#include<time.h>
#include<string.h>
int main()
{
char input[20] = {0};
system("shutdown -s -t 5");
again:
printf("请注意,你的电脑60秒内关机,请输入我是猪取消关机\n:");
scanf("%s",input);
if(strcmp(input,"我是猪") == 0)
{
  system("shutdown -a");
  printf("好嘛,你是猪\n");
}
else
{
  goto again;
}
return 0;
}


关注下面的标签,发现更多相似文章