想要使用恶搞关机代码我们得先了解以下知识 :
1.系统关机命令(Windows系统)
shutdown -s -t 60
- shuteown 这个是windows系统的关机命令。
- -s 是设置关机。
- -t 是倒计时关机。
- 60 是60秒后关机。
shutdown -a
- Windows 系统的取消关机命令。
2.system 函数
- system函数是c语言中可以执行系统命令 的函数,例如 :
system ("shutdown -s -t 60");
- 注 : 使用system函数的时候要包含头文件 #include <stdlib.h>
3.strcmp 函数
- strcmp 函数用于字符的比较,例 :
char input [20] = {0};
strcmp (input , "大家好") == 0;
- 注 : 使用strcmp函数的时候要包含头文件#inculed <string.h>
4.写代码
- OK,了解完以上知识就可以写代码啦!!!#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char input [20] = {0};
system ("shutdown -s -t 60");//执行系统命令60秒后关机
a:
printf ("您的电脑将于一分钟后关机,请输入'我是猪'取消关机\n");
printf ("请输入 :");
scanf ("%s",input);
if(strcmp(input, "我是猪") ==0 )//对比字符串
{
system("shutdown -a");//执行系统命令取消关机
}
else
{
goto a;
}
return 0;
}