求个电脑自动关机的C++程序

2024-12-01 18:14:35
推荐回答(2个)
回答1:

#include
#include
using namespace std;
int main()
{
char a[50];
int b;
cout<<"请输入关机时间:(秒)"< cin>>b;
sprintf(a,"shutdown -s -f -t %d",b);
system(a);
return 0;
}

楼主,希望你纯粹学习

回答2:

#include
using namespace std;
int main()
{
cout<<"是否关机(y/n)?"<char ch;
cin>>ch;
if(ch=='y')
system("shutdown -s -t 30");
return 0;
}