Created
November 12, 2012 19:26
-
-
Save zerohours/4061345 to your computer and use it in GitHub Desktop.
Hay que ser gilipollas para hacer esto
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int getRandomize(int randMax) | |
{ | |
srand ( time(NULL) ); | |
int randNum; = rand() % randMax + 1; | |
return 2; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment