|
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
|
|
|
|
|