摘要:
1、if语句 if 条件表达式 then 语句块 else 语句块 endif;或者是 if 条件表达式 then 语句块 elseif 条件表达式 语句块 .... endif;例如:2、if goto语句 if 条件表达式 goto 标号;例如:3、switch .. endswitch; switch (表达式) case 常量1: 语句1 case 常量2: 语句2 …… default: 语句n+1 endswitch;例如: 4、 while语句 while (表达式) 语句块 endwhile;注:不能在循环中定义标号例如:5、 repeat .. until... 阅读全文
摘要:
1、算术运算符:+-*/2、关系运算符:> . =. =. !=3、 逻辑运算符:&&、 ||、 !4、 位运算符:&、|、^、>5、 赋值运算符:=(不支持连续赋值)6、指针运算符:*、&7、分量运算符:.、->8、下标运算符:[]9、字符串运算符:^、%、+ 阅读全文