Hard to Get

--人生在世 难得二字

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

Employ indentation rigorously with IF statements to show logical levels. Each IF, THEN, ELSE, ELSIF, and END IF should align within each level. For example:
Nested IFs:

IF <condition1> 
THEN
   
ELSE
   
IF <condition2> 
   
THEN 
       
   
ELSE  
   
END IF;  
END IF;

IF with multiple ELSIFs:

IF <condition1>
THEN
   
ELSIF 
<condition2>
THEN
   
ELSIF 
<condition2>
THEN
  
END IF;
posted on 2005-09-13 21:46  Del  阅读(131)  评论(0)    收藏  举报