赞
踩
windows下的关机命令:shutdown -s -t 60(60s后关机)
取消注销命令:shutdown -a
- //关机
- //c语言提供了一个函数 system() -执行系统命令的
- //shutdown -s -t 60 关机
- //shutdown -a 取消注销
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- int main()
- {
- char input[20] = { 0 };
- system("shutdown -s -t 60");
- flag:
- printf("请注意,你的电脑将在一分钟后关机,请输入,666,就可以取消\n");
- scanf("%s", input);
- if (strcmp(input,"666") == 0) {
- system("shutdown -a");
- }
- else
- {
- goto flag;
- }
- return 0;
- }
由于我的vs2019编码格式有点问题,因此不能输入中文的字符串,所以我把匹配的字符串换成了数字666.
运行结果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。