main()
{ int tim,i;
char f;
for(i=0;i<=1;i++)
sleep(1);
system("cd..");
system("shutdown -s");
printf("input G to cold down\n");
f=getch();
if(f=='g'||f=='G')
system("shutdown -a");
else
printf("there is no chance!\n");
getch();
}
这里面的sleep 和 system 函数是什库函数为什么我没有定义他就能用?
在帮我解释这段代码 ?