In this program, we are going to share a C++ program to generate random numbers. If you are a beginner and want to start learning the C++ programming, then keep your close attention in this tutorial as I am going to share a program for C++ program to generate random numbers.
To increase your C++ knowledge, practice all C++ programs:
Copy the below C++ program and execute it with the help of GCC compiler.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #include<iostream> #include<cstdlib> using namespace std; main() { int n, max, num, c; cout << "Enter the number of random numbers you want "; cin >> n; cout << "Enter the maximum value of random number "; cin >> max; cout << "Random numbers from 0 to " << max << " are:" << endl; for ( c = 1 ; c <= n ; c++ ) { num = random(max); cout << num << endl; } return 0; } |