PSEUDOCODE FOR play METHOD OF Craps CLASS Statements that end in a semicolon are actual Java statements. Declare local variable sum. die1.roll(); die2.roll(); firstRoll = die1.getOutcome() + die2.getOutcome(); Append firstRoll to rolls. if firstRoll is 7 or 11, { Set win to true. Add 2 times bet to amount. } else if firstRoll is 2, 3, or 12, { Set win to false. } else { die1.roll(); die2.roll(); sum = die1.getOutcome() + die2.getOutcome(); Append sum to rolls. while sum is not equal to firstRoll or 7 { die1.roll(); die2.roll(); sum = die1.getOutcome() + die2.getOutcome(); Append sum to rolls. } if sum is equal to firstRoll { Set win to true. Add 2 times bet to amount. } else { Set win to false. } }