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

51,694 answers

573 users

How to generate random floating point numbers in Swift

1 Answer

0 votes
import Foundation

func generateRandomNumbers(count: Int, lower: Double, upper: Double) -> [Double] {
    return (0..<count).map { _ in Double.random(in: lower...upper) }
}

let count = 10
let lower = 0.0
let upper = 3.0

let randomNumbers = generateRandomNumbers(count: count, lower: lower, upper: upper)

for num in randomNumbers {
    print(String(format: "%.6f", num), terminator: " ")
}



/*
run:

1.133126 2.976570 1.301767 2.165949 0.758863 2.288533 0.056339 2.366101 0.130626 0.935572 

*/

 



answered Nov 3, 2025 by avibootz
...