#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{
char input[20]={0};//定义一个数组
system("shutdown -s -t 120");//system对应头文件<stdlib.h>,让计算机做出关机指令
again:
printf("你的电脑将会在120秒后关机,如果你不想关机!\n");
printf("请输入:我是pig\n");
scanf("%s",input); //读取输入的信息
if(strcmp(input,"我是pig")==0)//判断是否和我是pig相同 ,strcmp对应头文件<string.h>
{
system("shutdown -a");//撤销关机指令
}
else
{
goto again;//如果他不输入我是pig,则跳到again接着执行。
}
return 0;
}
#你
???
学我的?
嗨氏邮区憋滴~
我是dog
addd说的太对了