赞
踩
用代码写一个关机程序,只要程序启动了,就倒计时60秒关机;如果你在60秒内,你输入:”你是猪“,就取消关机;如果不输入,时间到就自动关机。
- #include<stdio.h>
- #include<stdlib.h>//system()函数使用时所需要的头文件
- #include<string.h>//strcmp()函数使用时所需的头文件
- int main()
- {
- char input[20] = { 0 };
- system("shutdown -s -t 60");
- while (1)
- {
- printf("请注意,你的电脑在一分钟内关机,如果输入:我是猪,就取消\n");
- scanf("%s", input);
- //判断
- if (strcmp(input, "我是猪") == 0)
- {
- //取消关机
- system("shutdown -a");
- break;
- }
- }
-
-
- return 0;
- }
shutdown windows 提供的关机命令
shutdown -s -t 60 在命令提示符窗口输入这个,表示六十秒内关机
shutdown -a 表示注销倒计时关机
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。