Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to generate random integers (int) in a specific range in Java

1 Answer

0 votes
package javaapplication1;
 
import java.util.Random;

public class Example {
 public static void main(String[] args) {
    int START = 13;
    int END = 17;
    Random random = new Random();
    for (int idx = 1; idx <= 10; ++idx)
      System.out.println(rangRandomInteger(START, END, random));
  }
  
  private static int rangRandomInteger(int start, int end, Random random) {
    if (start > end) {
      throw new IllegalArgumentException("Start > End");
    }
    long range = (long)end - (long)start + 1;
    long rnd = (long)(range * random.nextDouble());
    return (int)(rnd + start);    
  }
} 
 
/*
run:
 
13
13
13
15
14
16
16
16
16
15
 
*/

 



answered Jan 11, 2016 by avibootz

Related questions

5 answers 285 views
3 answers 266 views
2 answers 218 views
1 answer 158 views
2 answers 158 views
1 answer 111 views
...