選擇語句:
1.If…Then…Else選擇語句:
If (表達式) Then
Begin
語句塊;
End
Else If(表達式) Then
Begin
語句塊;
End;
Else
Begin
語句塊;
End;
2.Case…Of…Else多分支控制語句:
Case (表達式) Of
情況常量值1:語句;
情況常量值2:語句;
情況常量值3:語句;
……
情況常量值n:語句;
Else: 語句;
End;
循環語句
1. While…do循環
While (表達式) do
語句
End;
2. Repeat…until循環(類似c中的do…while)
Repeat
語句
Until(表達式);
3. For…to…do循環(自變量增)
For 變量初值 to 終值 step 步長 do
Begin
語句塊;
End;
4. For...downto…do循環(自變量減)
For 變量初值 downto 終值 step 步長 do
Begin
語句塊;
End;