java 怎么随机取出5个0——10的不同随机数?要不同的
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 怎么随机取出5个0——10的不同随机数?要不同的相关的知识,希望对你有一定的参考价值。
ava 怎么随机取出5个0——10的不同随机数?要不同的
public class TestRandompublic static void main(String[] args)
Random a=new Random();
int s[]=new int[5];
for (int i = 0; i < s.length;)
s[i]=a.nextInt(10);
if(CheckRandom(s,s[i],i))
System.out.println("第"+(i+1)+"个随机数是:"+s[i]);
i++;
public static boolean CheckRandom(int c[],int t,int l)//检查生成的随机数是否存在与数组中
for (int i = 0; i < c.length; i++)
if(c[i]==t&&l!=i)
return false;
return true;
参考技术A 大概有2中思想
1:声明1个长度为5的数组第一次取出一个随即数放到数组中然后下标+1在取一个数和数组中的数做比较如果不同就放进去直到取到5个数
2:有个长度为10的数组里面放着0-10,每次生成一个0-9的随即数作为数组的下标然后把值取出来做个循环循环依次和循环中 数组[i]的值交换位置然后在取出数组的前5个数就行
不知道大家还有更好的方法没有有的话可以联系我 参考技术B import java.util.Random;
public class TestForRandom
private Random r = new Random();
public static void main(String args[])
TestForRandom t = new TestForRandom();
t.value();
public void value()
for(int i = 0;i<5;i++)
System.out.println(generate());
public int generate()
return r.nextInt(177);
参考技术C 萌新首答
利用set集合属性:
@Test
public void testRandom()
Random r=new Random();
Set<Integer> set=new HashSet<Integer>();
do
int x=r.nextInt(10);
set.add(x);
while(set.size()<5);
Iterator<Integer> it=set.iterator();
while(it.hasNext())
System.out.print(it.next());
希望可以对答主有帮助!
C语言程序:从N个数中随机取出100个不同的数
/**你题目中的N个数至少得大于100吧.下面的程序N个数是随机生成你的N个数是??? 同时这个程序有错误的话请告诉我.
*/
/*
*从N个数中随机取出100个不同的数
*@author:banxi1988
*/
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
int main(void)
int numbers[4096];
int nums[100];
int num;
int count=0;
int i = 0;
int j = 0;
int flag = 0;
int index= 0;
srand((unsigned)time(NULL));
/**随机生成0到8192的数放到数组numbers当中*/
for(i = 0; i < 4096; i++)
numbers[i] = rand()%8192;
//for:
/**从numbers数组当中的数中随机取100个不同的数*/
for(i = 0; i< 100;i++)
flag = 1;
do
index = rand()%4096;
num = numbers[index];
for(j = 0; j < count; j++)
if(num==nums[j])
flag = 0;
break;
//:if
//:for
while(flag==0);
nums[count++]=num;
///for:
printf("从0到8192中产生的100个随机的不相同的数如下:\n");
for(i = 0; i< 100;i++)
if(i%10==0)putchar('\n');
printf("%5d",nums[i]);
putchar('\n');
return 0;
/*运行结果如下:
从0到8192中产生的100个随机的不相同的数如下:
4206 7853 1327 4541 398 754 5374 5259 258 4411
2069 4161 5186 5419 1746 1531 1957 7334 157 1693
5140 6087 1879 6489 2659 1210 102 2302 1522 7118
603 1711 1322 4489 6386 2732 3418 2203 4000 1309
4269 4382 2389 7617 5899 5054 818 4337 1247 5513
7369 2756 2956 7529 6623 6744 5229 4684 7251 2584
5868 3451 1570 4214 1106 1487 4682 5848 4730 3291
6084 7570 602 2128 2447 1741 714 7384 5965 2182
439 5286 2605 6820 6221 6646 1348 3899 3016 4971
2381 2410 1126 1984 1633 2395 5670 1890 5346 2713
**/
//:main 参考技术A 随机取数 关键用到2个函数srand和rand
srand(time(NULL))是让你取到的数每次不一样因为用到了time函数,时间每秒都是不一样的
rand()就是去随机数啦
你可以把N个数存到1个数组里,然后随机100个下标志就OK了 参考技术B #include<stdlib.h>
#include<time.h>
#include<stdio.h>
void main()
int i,k,range,n,a[100];
int min,max,flag=0;
long t;
double j;
min=50;
max=500;
range=max-min;
srand((unsigned)time(&t)); /* 首先给srand()提供一个种子,它是一个unsigned int类型,其取值范围从0~65535;*/
do for(i=0;i<100;i++)
n=rand(); /*调用rand(),它会根据提供给srand()的种子值返回一个随机数(在0到32767之间)
根据需要多次调用rand(),从而不间断地得到新的随机数;*/
j=((double)n/(double)RAND_MAX); /*把随机数除以RAND_MAX,从而产生一个在0到1之间的校正值;*/
n=(int)(j*(double)range); /*把校正值乘以所需要的范围值(即500-50)从而产生一个在0到43之间的值*/
n+=min; /*把该值和所要求的最小值相加,从而使该值最终落在正确的取值范围----1到44之间。*/
a[i]=n;
for(i=0;i<99;i++) /* 判断这100个数是否重复,如果是,再生成一次,直到各不相同为止,也可以不要这段,呵呵*/
for(k=i+1;k<100;k++)
if(a[i]==a[k]) flag=1;flag=0;
while(flag);
printf("The random number is:\n"); /*产生100个50—500个随机数,并且排成10行10列*/
for(i=0;i<100;i++)
printf("%d ",a[i]);
if((i+1)%10==0) printf("\n");
看看这个,转别人的!
以上是关于java 怎么随机取出5个0——10的不同随机数?要不同的的主要内容,如果未能解决你的问题,请参考以下文章