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,870 questions

51,793 answers

573 users

How to generate N random numbers between min and max in Scala

1 Answer

0 votes
import scala.util.Random

object RandomNumberGenerator {
  def getRandom(min: Int, max: Int): Int = {
      Random.nextInt((max - min) + 1) + min
  }

  def main(args: Array[String]): Unit = {
    val N = 15
    for (_ <- 0 until N) {
      val r = getRandom(1, 30);
      print(s"$r ")
    }
  }
}




/*
run:

29 10 15 5 30 25 15 2 16 15 27 5 8 2 10 

*/

 



answered Sep 24, 2024 by avibootz

Related questions

1 answer 103 views
1 answer 130 views
1 answer 114 views
1 answer 106 views
2 answers 129 views
...