if语句
if 条件 then 执行
if a > b then
begin
Showmessage('a>b');
end;
if 条件 then 执行1 else 执行2
if a > b then //a >b 执行1 ,否则 执行2
begin //执行1
ShowMessage('a>b');
end
else
begin //执行2
ShowMessage('a<=b');
end;
if 条件1 then 执行1 else if 条件2 then 执行2 else 执行3
if a>b then
begin
ShowMessage('a>b');
end
else if a=b then
begin
ShowMessage('a=b');
end
else
begin
ShowMessage('a<b');
end;
此循环可以无限嵌套,但是嵌套的比较多了之后需要仔细分析处理的逻辑是否严谨