輸入數據即可實現定時關機:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
char cmd[20] = "shutdown -s -t ",*temp;
char string[16] = {0};
int time;
printf("輸入定時關機時間分鐘數:\n");
scanf("%d",&time);
temp = itoa(time*60,string,10);//轉換爲字串
system(strcat(cmd,temp));
printf("設定成功!電腦將在%d分鐘後定時關機。\n",time);
system("pause");
return 0;
}
以下是取消自動關機的程式程式碼:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
system("shutdown -a");
printf("已取消定時關機!");
return 0;
}