玩坏你的C盲舍友!

#include <stdio.h>
#include <string.h>
#include <stdlib.h>


int main()
{
 char intput[20];
  printf("电脑在一分钟后关机\n");
 system("shutdown -s -t 60");
flag:
 printf("请输入:I love you \n");
 scanf("%s",intput);


 if(strcmp(intput,"I love you")==0)
 {
  system("shutdown -a");
 }
 else
 {
  goto flag;
 }
 return 0;
}

你可能感兴趣的:(一段小代码玩坏你的C盲舍友)