Q:

Write a program in C++ to generate random integers in a specific range

0

Write a program in C++ to generate random integers in a specific range

Sample Output:

Generate random integer in a specific range:                          
 --------------------------------------------------                    
 Input the lower range of number: 15                                   
 Input the upper range of number: 25                                   
 The random number between 15 and 25 is: 18

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <cstdlib>
#include <ctime>
#include <iostream>

using namespace std;

int main() 
{
int ln,un;
 cout << "\n\n Generate random integer in a specific range: \n";
 cout << " --------------------------------------------------\n";
cout << " Input the lower range of number: ";
cin >> ln;
cout << " Input the upper range of number: ";
cin >> un;
     srand(time(NULL));
     cout<<" The random number between "<<ln<<" and "<<un<<" is: ";
cout <<  ln+rand() % static_cast<int>(un-ln+1) << endl;     
     return 0;

}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now