/* B Cohen 11/8/02 Create a craps shooter and have him play a game. */ #include #include #include "shooter.h" using namespace std; int main() { Shooter diamondJoe; int status; string exitStr; do { cout << endl << "r to roll "; cin >> exitStr; status = diamondJoe.shoot(); } while ( status != WON && status != LOST); cout << endl << "x to exit "; cin >> exitStr; return 0; }