赞
踩
用C语言实现电脑关机恶搞,当用户输入“我是猪”即可解除电脑关机
代码如下:
#include<stdio.h>
#include<string.h>
int main()
{
char input[20]={};
system("shutdown -s -t 60");
again:
printf("你的电脑将在一分钟关闭,请输入:我是猪 来解除关闭\n");
scanf("%s",input);
if(strcmp(input,"我是猪")==0)
{
system("shutdown -a");
}
else
{
goto again;
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。