gpt4 book ai didi

c - 程序在某个时间执行

转载 作者:行者123 更新时间:2023-11-30 14:27:07 26 4
gpt4 key购买 nike

好吧,我的问题是,我怎样才能制作一个基本上在例如中午 12 点执行程序其余部分的程序。例如一些不现实的代码:

#include <stdio.h>
#include <time.h>

int main()
{

Get_time() //Gets system time

if(time() == 254pm ){ //if time is 2:54pm

printf("Time: 2:54pm\n");
}

else printf("Program can not execute at this time.\n");

return 0;
}

有人知道我该怎么做类似的事情吗?

最佳答案

使用localtime获取当前时间。

#include <stdio.h>
#include <time.h>

int main ()
{
// Get system time
time_t rawtime;
struct tm * timeinfo;

time ( &rawtime );
timeinfo = localtime ( &rawtime );

// Check
if(timeinfo->tm_hour == 14 && timeinfo->tm_min == 54)
{
printf("Time: 2:54pm\n");
}

return 0;
}

关于c - 程序在某个时间执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8190400/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com