一.变量与变量之间的运算格式:
SMALL M88 <$STR(G88)> ;检测私人变量M88,是否小于全局变量G88
LARGE M88 <$STR(G88)> ;检测私人变量M88,是否大于全局变量G88
EQUAL M88 <$STR(G88)> ;检测私人变量M88,是否等于全局变量G88
MOV G88 <$STR(M88)>;设置全局变量G88= M88
INC G88 <$STR(M88)>;设置全局变量G88= G88+M88
DEC G88 <$STR(M88)>;设置全局变量G88= G88-M88
MUL M88 $STR(M89);设置私人变量M88= M88*M89
DIV M88 $STR(M89);设置私人变量M88= M88/M89
PERCENT M88 $STR(M89);设置私人变量M88= M88/M89*100%
数值型变量的运算:\ \
变量M5:<$str(M5)> 变量M6:<$str(M6)> \ \
<变量M5/@@inputinteger5> <变量M6/@@inputinteger6>\ \
<比较大小/@比较大小> <是否相等/@是否相等> \ \
<m5变量加M6/@变量加> <m5变量乘M6/@变量乘> <m5变量除M6/@变量除> <百分比运算/@百分比>
[@变量加]
#act
INC m5 <$str(m6)>
sendmsg 6 ------相加后M5变为:<$str(M5)>
goto @main
[@变量乘]
#act
MUL m5 <$str(m6)>
sendmsg 6 ------相乘后M5变为:<$str(M5)>
goto @main
[@变量除]
#act
DIV m5 <$str(m6)>
sendmsg 6 ------相除后M5变为:<$str(M5)>
goto @main
[@百分比]
#act
percent M5 <$str(m6)>
sendmsg 6 ------百分比后M5变为:<$str(M5)>
goto @main
[@比较大小]
#if
small M5 <$str(M6)>
#act
messagebox M5的值小于M6
#elseact
messagebox M5的值大于M6
[@是否相等]
#if
equal M5 <$str(M6)>
#act
messagebox M5的值=M6
#elseact
messagebox M5的值!=M6
[@inputinteger5]
#act
delaygoto 1 ~inputinteger5
[~inputinteger5]
#act
sendmsg 6 -------你输入的是<$str(M5)>
goto @main
[@@inputinteger6]
#act
delaygoto 1 ~inputinteger6
[~inputinteger6]
#act
sendmsg 6 -------你输入的是<$str(M6)>
goto @main