5 ms·
You’re calculating a random number every time the loop runs. If you want an average of 50 you should call random outside the loop and save the value to be compa
by orbz 3y ago
You’re calculating a random number every time the loop runs. If you want an average of 50 you should call random outside the loop and save the value to be compared each time.
- aalhour 3y agoYes, that's true. I don't want an average of 50. My initial guess of 50 is wrong. I am trying to understand why the average turned out to be approximately 12.