You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package sort;
|
|
|
|
|
|
public class RandomNum {
|
|
public int[] RandomGen(int n,int low, int high){
|
|
int[] r=new int[n];
|
|
int diff=high-low;
|
|
for(int i=0;i<n;i++){
|
|
r[i]=(int) (Math.random()*diff)+low;
|
|
|
|
|
|
}
|
|
return r;
|
|
}
|
|
}
|