#include
#include
#include
#include
#include
using namespace std;
int main()
{
string a,b;
strstream c;
char x;
int i;
cout << "輸入多少小時之後關機" << endl;
x = getch();
i = (int(x) - 48) * 3600;//秒數
c << i;
c >> b;
a = "shutdown -s -t " + b;
char*p = (char*)a.data();
system(p);
return 0;
}
我用的是VS2013,自己編的一個定時關機的程序,直接點ctrl+f5能正常運行,
但是打開文件夾找到exe文件卻不行。實在是令我費解,求大神解答
無論點什麼都是這樣