C++自动关机时间(具体如下)

2024-12-19 20:14:18
推荐回答(1个)
回答1:

int
a;
cout<<"请输入您的倒数关机时间,注:以秒为单位"< cin>>a;

char
b[100];

b=itoa(a);
system("shutdown
-s
-t
"+b);
return
0;