1. For loop


For i = 0 to 100 Step 1

(Loop content...)

Next


"i가 0부터 100까지 1씩 증가하며 Loop content를 수행하라."



2. While loop


While i < 5

(Loop content...)

wend


"i가 5보다 찾으면 Loop content를 반복하라."



3. Do While loop


Do While i < 5
    (Loop content...)
Loop


"Loop content를 한번 먼저 수행 한 후 i가 5보다 작으면 Loop content를 반복하라."



4. Exit do/for를 이용해 반복문을 탈출할 수 있다.


반응형

'Programming' 카테고리의 다른 글

[ASP] 04. 파일 읽기  (0) 2016.12.20
[ASP] 03. 파일 쓰기  (0) 2016.12.20
[ASP] 02. 조건문  (0) 2016.12.20
[ASP] 00. 변수 선언  (0) 2016.12.20
[Programming] 네이밍 방법론  (0) 2016.12.13

+ Recent posts