100 && $points<=1000: $bonusPoints = $points * 0.2; break; case $points>1000: $bonusPoints = $points * 0.1; break; } switch ($points) { case $points % 2 == 0: $bonusPoints += 1; break; case $points % 10 === 5: $bonusPoints += 2; break; } echo $bonusPoints.PHP_EOL; echo $points + $bonusPoints;