
-----------------------------------
simonsayz
Thu Oct 23, 2008 11:38 pm

Craps Program
-----------------------------------
Hi all. I have a craps assignment due soon and I have finished my code and wanted someone else besides myself to overlook it and see how it is. Any feedback would be great . thanks  


// General program shell for Assignment III
// This is a program that simulates the game
// of casino craps. 

// #include preprocessor directives
#include 
#include 		// for using rand() function
#include 		// for using time() function

// namespace directives
using namespace std ;

void CrapsIntro() ;			// brief description of Craps game 
int  CrapsRoll() ;			// outcome of two six-sided dice rolls
void myTimeDelay(int) ;		// time delay between rolls
void CrapsPassLine();       // Function for if chooses passline
void CrapsDontPassLine();   // Function for if chooses dont passline
char goAgain();         // option if user wants to play again

const int DELAY = INT_MAX / 5 ;	// manual delay between rolls


int main ()
{
    int mainBet;

	// Display game instructions
	CrapsIntro();

	// Ask user to play Pass Line OR Don't Pass Line
	cout 