C语言生成固定范围的随机数
【摘要】 #include <stdio.h> //默认 printf等#include <stdlib.h> //随机数#include <string.h> //字符串操作函数#include <sys/time.h> // time()int mt_rand(int, int);int main(void) {int arr[10000][2]={0};srand(...
#include <stdio.h> //默认 printf等
#include <stdlib.h> //随机数
#include <string.h> //字符串操作函数
#include <sys/time.h> // time()
int mt_rand(int, int);
int main(void) {
int arr[10000][2]={0};
srand(time(0));
for (int i = 0; i < 10000; ++i) {
int num = mt_rand(1,100);
arr[num-1][0]=num;
arr[num-1][1]++;
}
for (int j = 0; j <100 ; ++j) {
printf(“随机数字:%d,随机次数:%d \n”,arr[j][0],arr[j][1]);
}
return 0;
}
/**
- 根据区间随机
- @param start
- @param end
- @return
*/
int mt_rand(int start, int end) {
return rand() % (end + 1 - start) + start; /生成一个[start,end)区间内的整数/
}
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)