Hi there, I need really simple evidence of MMF calculations bug (that despite PEMDAS division is always done before multiplication) which will provide wrong result. But something what will work with floats.
Example:
1+2-3*7/11 = 3
1+2-((3*7)/11) = 2
BUT
1+2-3*7/11.0 = 1.09091
1+2-((3*7)/11.0) = 1.09091
Or
30 ÷ 5 × 3 = 6 × 3 = 18
Not
30 ÷ 5 × 3 = 30 ÷ 15 = 2
(and yes one of the variables my change to proof it).