求一个调用shutdown.exe关机的C++小程序

 我来答
huifeng00
2010-04-20 · TA获得超过5235个赞
知道大有可为答主
回答量:808
采纳率:0%
帮助的人:719万
展开全部
其实很简单,其实就是系统调用下shutdown命令就可以了。

程序如下

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int main()
{
int choice,use=0;
char data[6],ch;
char cmd[]="shutdown -s -t ";
printf("welcome you to use the timeing shutdown application\n");
printf("****************\n");
printf("1 enter the time\n");
printf("2 no operaton and exit\n");
printf("****************\n");
scanf("%d",&choice);
if(choice==1)
{
do
{
printf("please input the time in seconds\n");
scanf("%s",data);
printf("Your computer will shut down in %s seconds\n(Y/N)?",data);
ch=getchar();
ch=getchar();
if(ch=='Y'||ch=='y')
system(strcat(cmd,data));
else
use=1;
} while (use);
}
else
exit(0);
return 0;
}

我空间中写的。
http://hi.baidu.com/huifeng00/blog/item/977dd6537d0c9e838d54300c.html
fkkffly
2018-05-04
知道答主
回答量:6
采纳率:0%
帮助的人:5374
展开全部
#include<iostream>
using namespace std;
int main()
{
system(“shutdown/a”)
return 0
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式