View Single Post
Old Nov 28th, 2005, 8:55 AM   #2
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
I didn't examine your code or look at your page. Have you considered things like,
   if (roll < 5) 
      // Group a result
   else if (roll < 9) 
      // Group b result
   else 
      // Group c result
   // Take me home mama, I be's done
I left out the braces, but you get the drift.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote