Tagged Questions
-3
votes
4answers
316 views
Can Javascript break mathematical rules? [closed]
I was taught that in maths we evaluate things, with the acronym BODMAS
Brackets, Orders(powers), Division, Multiplication, Addition, Subtraction.
I understand that in Javascript, * and / have equal ...
58
votes
12answers
4k views
Why is $a + ++$a == 2?
If I try this:
$a = 0;
echo $a + ++$a, PHP_EOL;
echo $a;
I get this output:
2
1
Demo: http://codepad.org/ncVuJtJu
Why is that?
I expect to get this as an output:
1
1
My understanding:
...
9
votes
8answers
1k views
What is the right precedence of the math expression
What is the correct sequence of the math operations in this expression in Java:
a + b * c / ( d - e )
1. 4 1 3 2
2. 4 2 3 1
I understand that result is the same in both ...