大家帮我改一下,关于获取系统时间。
是这样的,我想找一个用C语言编的定时关机程序,在网上找到这个:#include<stdio.h>
#include<dos.h>
#include<stdlib.h>
void main()
{
char shut[8];
char b[81];
printf("Please enter your desired automatic shutdown of time:");
scanf("%s",shut);
sprintf(b,"at %s shutdown -s",shut);
system(b);
}
不过这个是要手动输入关机时间的,我想要程序自动获取系统当前时间(比如当前是10:00),让后加上我要开电脑的
时间(比如两个小时),到那时间就关机(就是12:00)。请问要怎么改?