Thread: Blackjack
View Single Post
  #13  
Old 01-10-2004, 02:28 PM
Loriel Loriel is offline
Somewhat rusty
Loriel's Avatar
Join Date: Mar 2001
Posts: 5,059
Loriel is a name known to allLoriel is a name known to allLoriel is a name known to allLoriel is a name known to all
Quote:
Originally posted by GoZelda
int random = (rand()%10);
Which is not newbie-friendly
Which is not even how you are supposed to do it, try:
random = (int)(10.0 * rand() / (RAND_MAX + 1.0));
Probably not much difference these days, but rand()%10 used to return less random numbers.
Reply With Quote