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

016 生成随机数

时间:2019-09-19 23:33:37      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:bsp   生成   clu   env   unsigned   char   sig   loop   turn   

 

 

#include "stdafx.h"
#include <stdlib.h>
#include <time.h>

// 生成随机数 - 100到200
int main(int argc, char *argv[], char **envp)
{
    srand((unsigned)time(NULL));

    int nLoop = 0;
    while (nLoop < 20)
    {
        int i = 100 + rand() % 100;
        printf("%d\n", i);

        ++nLoop;
    }

    return 0;
}

 

016 生成随机数

标签:bsp   生成   clu   env   unsigned   char   sig   loop   turn   

原文地址:https://www.cnblogs.com/huafan/p/11553108.html

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