标题:求随机数程序,用srand!
取消只看楼主
joe87
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2009-2-18
结帖率:100%
已结贴  问题点数:20 回复次数:1 
求随机数程序,用srand!
我需要一个c程序产生0-1000000的随机数,但不会用srand函数,哪位高手可以帮帮我?急用!
搜索更多相关主题的帖子: 随机数 srand 
2009-06-25 23:19
joe87
Rank: 1
等 级:新手上路
帖 子:17
专家分:0
注 册:2009-2-18
得分:0 
回复 2楼 liang117
我需要10-1000000之间的数,要用到random(num),但srand和random一起用时显示编译错误。
我写的程序如下:
randcreate(int num,long a[])      /* create random figures */
{
    int i;
    long *p=a;
    srand((int)time(0));
         for(i=0;i<num;i++)
         {
             p[i]=random(1000000);
            if(p[i]<10)p[i]=p[i]+10;      /* ensure the figure is greater than 10 */
    }
}

我不知道哪错了,有谁能告诉我吗?
2009-06-26 00:29



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-277383-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.696069 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved