Hi,
algebra: z = pr%q+w/x - y
Perl code for this is: $z = $p * $r % $q + $w / $x - $y;
Can someone please explain to me : in what order does Perl calculate the operators? What would be calculated first, second, third etc... why?
I just cant get my head around the algebra business..
How does perl simplify the above algebra?
algebra: z = pr%q+w/x - y
Perl code for this is: $z = $p * $r % $q + $w / $x - $y;
Can someone please explain to me : in what order does Perl calculate the operators? What would be calculated first, second, third etc... why?
I just cant get my head around the algebra business..
How does perl simplify the above algebra?
Comment