do loop

A highlevel programming language structure that repeats instructions based on the results of a comparison. In a DO WHILE loop, the instructions within the loop are performed if the comparison is true. The following DO WHILE loop prints 1 through 10 and stops.

do loop
Một cấu ngôn ngữ lập trình cấp độ cao vốn lặp lại các lệnh chỉ dẫn dựa trên các kết quả so sánh. Trong vòng lặp DO WHILE, các lệnh chỉ dẫn trong vòng lặp được thực hiện nếu việc so sánh đúng. Trong vòng lặp DO UNTIL, các lệnh chỉ dẫn được chuyển vòng nếu việc so sánh đúng. Vòng lặp DO WHILE sau đây in 1 cho đến 10 và ngưng. counter = 0 do while counter < 10 counter = counter + 1 ? counter enđo.


Published:

PAGE TOP ↑