这次写一个关机程序,要知道关机程序是 shutdown 这是关机指令。但这是系统指令,所以要调用执行系统命令的函数,system,但是也要引system的头文件:stdlib.h 边写代码边解释
#include<stdio.h>#include<stdlib.h>//调用system函数所需的头文件#include<string.h>//调用strcmp所需的头文件int main(){ char input[20]={ 0 };//这里是创建一个存储字符的数组,大小为20个字符,初始化为0
system(“shutdown -s -t 60”);//shutdown是系统的关机指令,-s是以秒为单位,-t是时间,60是60秒要引头文#include<stdlib.h>again: printf (“请注意,你的电脑将在一分钟内关机,如果输入:‘我是猪’,就取消关机\n”);//这里是提示指令已经执行了 scanf("%s",&input);//取输入的地址,方便之后判断是不是"我是猪" ,我是猪那里可以使用单引号的英文引号,也可以使用中文双引号
if (strcmp(input, “我是猪”) == 0)// strcmp 比较字符串函数判断input中输入的是不是“我是猪” strcmp-string compre ==0,说明是一样的。但也要引头文件#include<string.h>
{
system(“shutdown -a”);//shutdown -a 取消关机的指令
}
else
{
goto again;//因为如果输入的不是我是猪的话,那么就需要再次提示,去输入。 所以是go to again ,所以应该返回提示那里 }
return 0;
}