鱼C论坛

 找回密码
 立即注册
查看: 1091|回复: 1

[已解决]如何返回一个介于[2020/1/1,00:00:00-2020/12/31,23:59:59]之间的随机时间

[复制链接]
发表于 2020-11-18 12:41:28 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 eobeom 于 2020-11-18 12:42 编辑
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

time_t xtime(int time_index);
void print_local_time(time_t t) {
\\补全函数
return;
}
int main(void) {
time_t t;
int tindex;

srand(0);
scanf("%d", &tindex);

t = xtime(tindex);
print_local_time(t);

return 0;
}

最后输出的格式是yy/mm/dd,xx:xx:xx, 星期
请问这个程序需要如何补全
最佳答案
2020-11-18 15:05:42
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

time_t xtime(int time_index)
{
        time_t temp;
        struct tm t = {0};

        time(&temp);
        t = *localtime(&temp);
        
        //返回2020-01-01 00:00:00的时间戳
        if(time_index == 0)
        {
                t.tm_mon = 1;
                t.tm_mday = 1;
                t.tm_hour = 0;
                t.tm_min = 0;
                t.tm_sec = 0;
        }
        //返回2020-12-31 23:59:59的时间戳
        else
        {
                t.tm_mon = 11;
                t.tm_mday = 31;
                t.tm_hour = 23;
                t.tm_min = 59;
                t.tm_sec = 59;
        }

        return mktime(&t);
}

void print_local_time(time_t t) 
{
        struct tm ts = *localtime(&t);

        printf("%4d-%02d-%02d,%02d:%02d:%02d,weekday %d\n",
                        ts.tm_year + 1900 ,
                        ts.tm_mon+1,
                        ts.tm_mday,
                        ts.tm_hour,
                        ts.tm_min,
                        ts.tm_sec,
                        ts.tm_wday);
        return;
}

int main(void) 
{
        time_t begin,end;
        time_t trand;
        int i = 0;
                
        srand(time(NULL));
        begin = xtime(0);
        end = xtime(1);

        //生成100个随机时间
        while(i++ < 100)
        {
                //由于rand()生成的随机数可能会比较小,取rand()*rand()将之放大
                trand = begin + (rand() * rand() % (end - begin));
                print_local_time(trand);
        }
        
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-11-18 15:05:42 | 显示全部楼层    本楼为最佳答案   
#include <stdio.h>
#include <stdlib.h>
#include <time.h>

time_t xtime(int time_index)
{
        time_t temp;
        struct tm t = {0};

        time(&temp);
        t = *localtime(&temp);
        
        //返回2020-01-01 00:00:00的时间戳
        if(time_index == 0)
        {
                t.tm_mon = 1;
                t.tm_mday = 1;
                t.tm_hour = 0;
                t.tm_min = 0;
                t.tm_sec = 0;
        }
        //返回2020-12-31 23:59:59的时间戳
        else
        {
                t.tm_mon = 11;
                t.tm_mday = 31;
                t.tm_hour = 23;
                t.tm_min = 59;
                t.tm_sec = 59;
        }

        return mktime(&t);
}

void print_local_time(time_t t) 
{
        struct tm ts = *localtime(&t);

        printf("%4d-%02d-%02d,%02d:%02d:%02d,weekday %d\n",
                        ts.tm_year + 1900 ,
                        ts.tm_mon+1,
                        ts.tm_mday,
                        ts.tm_hour,
                        ts.tm_min,
                        ts.tm_sec,
                        ts.tm_wday);
        return;
}

int main(void) 
{
        time_t begin,end;
        time_t trand;
        int i = 0;
                
        srand(time(NULL));
        begin = xtime(0);
        end = xtime(1);

        //生成100个随机时间
        while(i++ < 100)
        {
                //由于rand()生成的随机数可能会比较小,取rand()*rand()将之放大
                trand = begin + (rand() * rand() % (end - begin));
                print_local_time(trand);
        }
        
        return 0;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 13:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表