1. 程式人生 > >好玩的c語言程式!

好玩的c語言程式!

行程式後1分鐘之後關機,只有在一分鐘內輸入“我是豬”便可取消關機。

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main()
{
 char input[10];
 system("shutdown -s -t 60");
A: printf("please input \"我是豬\",otherwise your computer will shut down after one minute\n");
 scanf("%s",input);
 if(strcmp(input,"我是豬")==0) 
 {
  system("shutdown -a");
 }
 else
 {
  goto A;
 }
 return 0;
}
有木有很好玩,快來試試吧!