if语句

if 条件 then 执行

if else statement

if a > b then
begin
Showmessage('a>b');
end;

if 条件 then 执行1 else 执行2

if else statement

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;

此循环可以无限嵌套,但是嵌套的比较多了之后需要仔细分析处理的逻辑是否严谨

Copyright © 280i.com 2020 all right reserved,powered by Gitbook本书建立时间: 2020-04-06 22:45:43

results matching ""

    No results matching ""