C语言生成0到5的随机数 程序应该怎么写~
答案:4 悬赏:50 手机版
解决时间 2021-01-12 16:29
- 提问者网友:泪痣哥哥
- 2021-01-11 23:30
C语言生成0到5的随机数 程序应该怎么写~
最佳答案
- 五星知识达人网友:酒者煙囻
- 2021-01-12 01:04
#include
#include
int sui(int a,int b) //a=0 b=5
{
if(b static int c999=888888;
int r=0;
do {
c999++;
srand(c999+GetTickCount());
r=rand()%b;
} while (r return r;
}
#include
int sui(int a,int b) //a=0 b=5
{
if(b static int c999=888888;
int r=0;
do {
c999++;
srand(c999+GetTickCount());
r=rand()%b;
} while (r return r;
}
全部回答
- 1楼网友:从此江山别
- 2021-01-12 03:48
random(6)
- 2楼网友:迟山
- 2021-01-12 02:13
这只是一个伪随机而已,1~5 出现的概率并不相等
#include
#include
#include
void main()
{
srand (time(NULL));
printf("%d",rand()%6);
}
这只是一个伪随机而已,1~5 出现的概率并不相等
#include
#include
#include
void main()
{
srand (time(NULL));
printf("%d",rand()%6);
}
这只是一个伪随机而已,1~5 出现的概率并不相等
- 3楼网友:西岸风
- 2021-01-12 01:47
#include
#include
#include
void main()
{
srand (time(NULL));
printf("%d",rand()%6);
}
#include
#include
void main()
{
srand (time(NULL));
printf("%d",rand()%6);
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯