码迷,mamicode.com
首页 > 其他好文 > 详细

time.h中time(NULL),stdlib.h中srand(), rand()

时间:2020-06-26 20:07:52      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:time()   pre   time   int   nbsp   生成   col   main   div   

获取时间

#include <stdio.h>
#include <time.h>
int main() {
    printf("%ld\n", time(NULL));
    return 0;
}

 

对应python中

import time
print(time.time())

 

生成随机骰子数:

#include <stdio.h>
#include <time.h>
#include <stdlib.h>
int main() {
    srand(time(NULL));
    for (int i = 0; i < 10; ++i) {
        printf("%d\n", rand() % 6 + 1);
    }
}

 

time.h中time(NULL),stdlib.h中srand(), rand()

标签:time()   pre   time   int   nbsp   生成   col   main   div   

原文地址:https://www.cnblogs.com/profesor/p/13196085.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!