Different calculators follow different orders of operations. Most non-scientific calculators without a stack work left to right without any priority given to different operators, for example giving
1 + 2 X 3 = 9
while more sophisticated calculators will use a more standard priority, for example giving
1 + 2 X 3 = 7
|