The PEMDAS rules that state the order in which the operations in an expression should be solved, are:
1. Parentheses - They take precedence over all other operators. The first step is to solve all the operations within the parentheses. Work out all groupings from inside to out. (Whatever is in parentheses is a grouping)
2. Exponents - Work out all the exponential expressions.
3. Multiplication and Division - Next, moving from left to right, multiply and/or divide whichever comes first.
4. Addition and Subtraction - Lastly, moving from left to right, add and/or subtract whichever comes first.
I think it's the same between two + and/or - operators, left to right = right to left.
eg /2 is same as *.5
So in the code provided, * and \ (/) are processed left to right in the order they appear in the calculation (same goes for addition/subtraction).
what made me question was I did this;
Scale%% = 0
Xloc% = 450 - 16 * 11 \ 2 * Scale%%
and received a Division by Zero error. which seems to suggest that * goes before \(/) in QB64
Steve caught the main difference of Integer division, that's not the same as normal division.
The full list, from highest to lowest precedence, is:Operators on the same line are evaluated left to right, or inside out in the case of the unary operators NOT and negation. In practice, this means:
- Exponentiation (^)
- Negation (-)
- Division (/), Multiplication (*)
- Integer Division (\)
- MOD
- Subtraction(-), Addition(+)
- Equality (=), Ordering (<, <=, >, >=)
- NOT
- AND
- OR
- XOR
- EQV
- IMP
- NOT 2 + 3 is NOT (2 + 3) because + has higher precedence and so is evaluated first
- - 2 ^ 3 = -(2 ^ 3) because ^ has higher precedence and so is evaluated first
Apparently this full list isn't in the wiki anywhere; it probably should be.
What is the reason why Integer Division comes after division and multiplication?
I bet this is an old feature of the original BASIC.
I think that for QB64 to work the way many other languages work, maybe it needs to change, or provide a compiler directive to tell it to perform order of operations the way most other languages do it. It would improve QB64.