shutdown是关机的命令,shutdown -s -t 是设置在多少时间后关机的命令,例如:shutdown -s -t 20 就是20秒后关机。
int system(char *command);功能是调用command指定的dos命令(windows下)或shell命令(Linux下)。shutdown是windows下的一个dos命令,功能为关机。其中-r参数表示关机后重启,即restart的首字母。-t seconds参数指定程序在多少秒,后面的0表示立即关机。shutdown的更多参数,参考百科:http://baike.baidu....
C语言中system函数执行的是DOS命令, 换句话说, 关机是用system来执行关机指令 如: 立即关机: system("shutdown -s -t 30") -s 关闭计算机 -t 延时关机时间 具体参数可到 命令提示符中 输入 system /? 查看 追问: 括号里的30是什么意思 回答: 秒数 用法: shutdown [/i | ...
直接使用,60秒自动关机
}while(s<0);sum = h * 3600 + m * 60 + s;printf("系统将在%d小时%d分钟%d秒后关机!\n请提前保存好正在进行的任务,防止数据丢失!",h,m,s);printf("测试:%d",sum);sprintf(shutdown,"shutdown -s -t %d",sum);Sleep(300);system(shutdown);return 0;} 这是我自己写的一个...
在我电脑上试了一下,把main的void改为int就可以了 试运行了你的程序以后,现在我电脑关机了,东西都没保存。。。
我第一次打电话去爸比单位找爸比也觉得接电话的叔叔知道我爸比是谁。
做成快捷方式就行了!右键菜单-创建快捷方式-输入 C:\WINDOWS\system32\shutdown.exe -s -t 0 创建即可!
解析 你这不是C#吧,是C啊.或者是C++? #include "stdio.h" #include "stdlib.h" #include "string.h" main() { char cmd[80]={0}; char s[80]; printf("请输入:"); scanf("%s",s); strcpy(cmd,"shutdown -i -t "); strcat(cmd,s); system(cmd ); }...