Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~12.5K People Reached
Favorite Forums

7 Posted Topics

Member Avatar for anga08628

You know how to populate a two dimensional array with an iteration(for, while etc.)statement right? Do it the same way, except set the values equal to random numbers instead.

Member Avatar for irum.nageen.3
0
11K
Member Avatar for maxmaxwell

When I turn on my computer, the power light turns on, and I can hear it starting up like normal; but the monitor, keyboard, and mouse make no response. By this I mean, nothing is displayed on the monitor, the laser mouse doesn't turn on, and the lights on the …

Member Avatar for N3crobloom
0
100
Member Avatar for maxmaxwell

I have an assignment where I'm supposed to place a knight on a chess board, and using a random number generator, make it move. It cannot visit a space more than once. I've tried this several ways, and started over from the beginning more than once. this is how I …

Member Avatar for maxmaxwell
0
215
Member Avatar for maxmaxwell

I'm working on a school assignment right now, ( populate an array of 50 elements with random integers ranging from 50-100, find mean, mode, standard deviation and the number of elements that fall within the standard deviation) I've written working code for everything except for the function that finds the …

Member Avatar for maxmaxwell
0
151
Member Avatar for dblbac

>"run time check #3: the variable 'noofgamesplayed' is being used without being defined" somebody gave you the answer to that already. In general It's a good Idea to set things equal to zero when you initialize them. meaning int x=0; is better than int x; If you don't set it …

Member Avatar for maxmaxwell
0
129
Member Avatar for cl3m0ns

int high=10; int low=6; rand () % (high - low + 1) + low; hope that helps.

Member Avatar for joshua.tilson
0
155
Member Avatar for dblbac

error "unreferenced local variable" Means that you initialized the variable without using it error "uninitialized local variable 'noOfguesses' used" means that you forgot to initialize it before using it. just write int noOfguessos=0; somewhere before you use it.

Member Avatar for Lerner
0
217

The End.