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 random odd numbers between min and max in C++

1 Answer

0 votes
#include <iostream>
#include <cstdlib>
#include <ctime>

int generate_random_odd_numbers_between_min_and_max(int min, int max) {
    return (rand() % ((max - min + 1) / 2)) * 2 + min;
}

int main() {
    srand(time(NULL));
    int min = 5, max = 41;
    
    for (int i = 0; i < 15; i++) {
        int number = generate_random_odd_numbers_between_min_and_max(min, max);
        std::cout << number << " ";
    }
}

  
  
/*
run:
  
33 11 27 33 39 33 15 39 31 21 33 11 15 5 31 
  
*/

 



answered Jul 26, 2024 by avibootz

Related questions

1 answer 86 views
2 answers 111 views
1 answer 94 views
1 answer 103 views
...