Hej!
Jeg har brug for at få trukket et tilfældigt tal ud mellem 0 og 999999999.
Hvordan kan jeg gøre dette i Visual C++(.NET)?
Hvad med noget ala
<pre>
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
void main( void )
{
int i;
/* Seed the random-number generator with current time so that
* the numbers will be different every time we run.
*/
srand( (unsigned)time( NULL ) );
/* Display 10 numbers. */
for( i = 0; i < 10;i++ )
printf( " %6d\\n", rand() );
}
</pre>
##################################
#There are only 10 types of people in the world: #
#Those who understand binary ant those who don't#
##################################
# JeZper #