k im not a programmer, just want to know d how you use random numbers when you need say 100 in just one second
Name:
Anonymous2010-11-06 19:19
halp
Name:
Anonymous2010-11-06 19:25
>>1 C++
Yeah, you do need help. But this isn't an abuse survivors' counseling group.
Name:
Anonymous2010-11-06 19:33
I don't really know c++ so I have no idea if this works or not
#include <cstdlib>
#include <iostream>
int main()
{
int iLadyBoys[100];
for (int i = 0; i == 100; 1)
{
iLadyBoys[i] = rand();
cout << iLadyBoys[i];
}
}
not sure
Name:
Anonymous2010-11-06 19:34
I think 1 should be maybe i++
Name:
Anonymous2010-11-06 19:46
I keep seeing repeating numbers like 1111111111222222222222222244444444444
Name:
Anonymous2010-11-06 21:00
#include <cstdlib>
#include <iostream>
int main()
{
int iLadyBoys[100];
for (int i = 0; i < 100; i++)
{
iLadyBoys[i] = rand();
cout << iLadyBoys[i];
}