Hello! I need some help programming a problem. It goes like this:
Write a C++ program that displays 200 random integers from 50 through 100 on the
computer screen.
While I know how to display random numbers I am struggling with displaying more than one number. What would the whole code look like?
Any help would be greatly appreciated. Thank you!
it looks exactly the same, except in a loop.
eg
for(I = 0; I < 200; I++)
{
...do it for one here, and you do it 200 times...
}