标题:怎么用rand()这个函数啊??????
只看楼主
learnerboy
Rank: 2
等 级:论坛游民
帖 子:246
专家分:22
注 册:2007-11-11
结帖率:100%
 问题点数:0 回复次数:2 
怎么用rand()这个函数啊??????
怎么用rand()啊,让它产生1~100之间的数??????
搜索更多相关主题的帖子: rand 函数 
2008-06-14 15:00
漫游者李李西
Rank: 1
等 级:新手上路
帖 子:110
专家分:0
注 册:2007-11-11
得分:0 
srand(time(0));
int integer =rand%100;

2008-06-14 16:08
lingluoz
Rank: 2
来 自:苏州科技学院
等 级:新手上路
威 望:4
帖 子:749
专家分:0
注 册:2008-2-2
得分:0 
rand
语法:

   #include <stdlib.h>  int rand( void );
功能: 函数返回一个在零到RAND_MAX 之间的伪随机整数。例如:   
srand( time(NULL) );   
for( i = 0; i < 10; i++ )      
    printf( "Random number #%d: %d\n", i, rand() );

srand
语法:

   #include <stdlib.h>  void srand( unsigned seed );
功能: 设置rand()随机序列种子。对于给定的种子seed, rand()会反复产生特定的随机序列。     
srand( time(NULL) );   
for( i = 0; i < 10; i++ )      
    printf( "Random number #%d: %d\n", i, rand() );

Murphy's Law :
If there are two or more ways to do something, and one of those ways can result in a catastrophe, then someone will do it.
2008-06-14 16:32



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




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

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