C语言写定时关机问题
#include <stdio.h>#include <stdlib.h>
#include <conio.h>
void main()
{
char a;
printf("定时关机程序\n");
printf("请输入操作命令:");
scanf("%c",&a);
if(a=='g')
{
int b;
printf("请输入延迟关机时间:");
scanf("%d",b);
system("shutdown.exe -s -t b");
}
if(a=='q')
system("shutdown.exe -a");
if(a=='e')
exit(0);
}但我测试了,没发,那位给我讲下,不调用 API