#include
#include
using namespace std;
int main()
{
char a[50];
int b;
cout<<"请输入关机时间:(秒)"<
sprintf(a,"shutdown -s -f -t %d",b);
system(a);
return 0;
}
楼主,希望你纯粹学习
#include
using namespace std;
int main()
{
cout<<"是否关机(y/n)?"<
cin>>ch;
if(ch=='y')
system("shutdown -s -t 30");
return 0;
}