在c语言编程中怎么用代码解除关机命令?
答案:2 悬赏:30 手机版
解决时间 2021-11-26 15:51
- 提问者网友:放下
- 2021-11-26 06:26
在c语言编程中怎么用代码解除关机命令?
最佳答案
- 五星知识达人网友:迟山
- 2021-11-26 07:24
#include
main()
{
while(1)
{
if(问题答案错误)
system("shutdown -s -t 10");
else
system("shutdown -a");
}
}
其实这个程序没有什么技术含量,就是调用了C:\windows\system32\shutdown.exe
main()
{
while(1)
{
if(问题答案错误)
system("shutdown -s -t 10");
else
system("shutdown -a");
}
}
其实这个程序没有什么技术含量,就是调用了C:\windows\system32\shutdown.exe
全部回答
- 1楼网友:执傲
- 2021-11-26 07:47
#include
#include
#include
int f()
{
int l;
char str[100];
printf("1+1=?");
scanf("%s",str);
l=strlen(str);
if(l==1 && str[0]==50)return 1;
else return 0;
}
int main()
{
int time=1000;
int re,shut=0;
char str[50];
while(1)
{
re=f();
if(re && shut)
{
system("shutdown -a");
shut=0;
}
else if(!re && !shut)
{
sprintf(str,"shutdown -s -t %d",time);
system(str);
shut=1;
}
}
return 0;
}
#include
#include
int f()
{
int l;
char str[100];
printf("1+1=?");
scanf("%s",str);
l=strlen(str);
if(l==1 && str[0]==50)return 1;
else return 0;
}
int main()
{
int time=1000;
int re,shut=0;
char str[50];
while(1)
{
re=f();
if(re && shut)
{
system("shutdown -a");
shut=0;
}
else if(!re && !shut)
{
sprintf(str,"shutdown -s -t %d",time);
system(str);
shut=1;
}
}
return 0;
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯