Question
I want to use a random number genrator and not get the same number twice, I first need to generate a random number between 1
I want to use a random number genrator and not get the same number twice, I first need to generate a random number between 1 and 25. Then I will need to traverse the array and check if this number already exists in the list, if the number is included in the list I will have to generate a new random number so that I dont have duplicate numbers in my list. My code is not removing the duplicates:
int main() {
int len = 25; int number[len];
for (int i=0; i temp[i] = number[i]; } cout << "Numbers generated Before: "; for (int i=0; i for (int i=0; i return 0; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started