To tylko jedna z 3 stron tej notatki. Zaloguj się aby zobaczyć ten dokument.
Zobacz
całą notatkę
Random numbers Generating true random numbers is a problem! Usually computers use special functions, generating pseudo random numbers The library stores information to be used in the next call to the generator int rand(void); Returns successive pseudo-random numbers in the range from 0 to RAND_MAX Example: #include #include int main() { int i; printf("Ten random numbers from 0 to 99\n\n"); for(i=0; i #include int main(void) { srand(10); printf("%d\n", rand() % 100); srand(10); printf("%d\n", rand() % 100); /* the same number! */ return 0; }
... zobacz całą notatkę
Komentarze użytkowników (0)