当前位置:   article > 正文

C语言关机代码

c语言关机代码

一段简单的关机代码

写一个C语言代码,能够在60秒内关机,输入esc则取消关机。

#include <stdio.h>//输入输出函数库
#include <string.h>//字符串函数库
#include <stdlib.h>//system函数的头文件
///关机代码
int main()
{
	char arr[20] = { 0 };
	system("shutdown -s -t 60");
again:
	printf("你的电脑60s后将关机,输入:“esc”,则取消关机\n");
	int o = scanf("%s", arr);
	if (strcmp(arr, "esc") == 0)
	{
		printf("取消关机");
		system("shutdown -a");
	}
	else
	{
		goto again;
	}
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

解释后续补上

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/268219
推荐阅读
相关标签
  

闽ICP备14008679号