if...then
      语句1
       else if...then
             语句2
              else if...then
                     语句N
请问有没有限制分支吗?若有请问最多能为多少个分支?
第二个问题
if...then
  begin
  
  end
  else
  begin
    if...then
      begin
 
      end
      else
      begin      end;
  end;
最多能嵌套多少个if...then...else?