C语言设计程序使电脑自动关机



//关机程序
//1. 程序运行起来后,1分钟内电脑关机
//2. 如果输入:我是猪,就取消关机

#include <stdio.h>
#include <stdlib.h>
#include <string.h>


int main()
{
	char input[20] = { 0 };
	//程序倒计时关机
	system("shutdown -s -t 60");
	while(1)
	{
		printf("请注意,你的电脑在1分钟内关机,如果输入:我是猪,就取消关机\n");
		scanf("%s", input);//输入
		if (strcmp(input, "我是猪") == 0)
		{
			system("shutdown -a");
			break;
		}
	}
	return 0;
}

system(“shutdown -s -t 60”)

用于使电脑自动关机60为秒数,可以自己修改

system(“shutdown -a”)

语句可以终止关机程序

你可能感兴趣的:(c语言,电脑,开发语言)