1.循环结构
for循环
a = 0
for i = 1 : 1 : 10
a=a+1
end
while循环结构
while i=2
a=2
end
2.分支结构
if…end
if a>b
'成立'
end
if…else…end
if a>b
'OK'
else
'NO'
end
switch…case…end
switch a+2
case 1
'1'
case 2
'2'
otherwise
'other'
end