Home › Forums › Programming › C programming Dice game problem? › Reply To: C programming Dice game problem?
18/04/2010 at 12:38 am
#45653
Inactive
if (RedDice == BlueDice)
{
if (RedDice == 6 || RedDice == 1)
Points = Points +10;
else
Points = Points +5;
}
is that make sence?