MPC2000 Reference Manual [JAPANESE] [ENGLISH]
  [UPDATE]2009-09-10 09:18:09 [CREATE]2009-09-09 15:53:17     [100]     Write comment[member only]
ATN:MUL,DIV are performed before others

11_83 performs MUL(*),DIV(/) operation before ADD(+) , SUB(-) according to the arithmetic calculation rule
This rule is different from the rule of 11_82 before.

#A=1+2*3
#pr A
7
#
Under the 11_81 before,The result is different from the most recent version. #A=1+2*3
#pr A
9
#
When you need this old rule in the latest version,
You should add "OLD" command in the top of the user program.
#10 old
#20 A=1+2*3
#30 pr A
LIST
10 OLD_EXPRESSION
20 A=1+2*3
30 PRINT A
#run
9
#





2009-09-09



MPC2000 Reference Manual -R5.11-   (C)2007 ACCEL Corp. all right reserved.