码迷,mamicode.com
首页 > 编程语言 > 详细

好玩的c语言程序!

时间:2015-09-21 19:41:05      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:有趣好玩恶搞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;
}

有木有很好玩,快来试试吧!


好玩的c语言程序!

标签:有趣好玩恶搞c语言小程序

原文地址:http://10738651.blog.51cto.com/10728651/1696836

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!