<?php$p = 12;$q = 21;$r = 13;echo $p + $q - $r / ($r - $q);?>
First ($r – $q) is evaluated then -$r/($r – $q) is evaluated this which is added to $p + $q therefore we get 34.625.
Previous Question Next Question
Your comments will be displayed only after manual approval.