Home  >  Article  >  What is the difference between when loop and until loop?

What is the difference between when loop and until loop?

藏色散人
藏色散人Original
2020-05-13 10:12:1026780browse

What is the difference between when loop and until loop?

What is the difference between when loop and until loop?

The difference between when-type loop and until-type loop is that "until-type loop performs at least one operation".

In programming languages, repeated structures correspond to two types of loop statements. The structure that first judges and then executes the loop body is called a while loop structure, also known as a while loop. The loop body is executed first and then judged, which is called the until loop structure, also known as the Until loop. So the until loop performs at least one operation.

What is the difference between when loop and until loop?

The loop is one of the most basic loop structures. When-type loop refers to a loop structure that is judged before the loop body is executed. When the condition is met, the loop is entered, otherwise the loop is terminated. The type loop structure is used when it first determines whether certain conditions are true, and then repeatedly executes a certain section of code.

The until-type loop structure first executes the loop body once, and then judges the control conditions. When the conditions are not met, the loop body is executed, and when it is met, it stops. The three elements of the until structure are the loop body, the loop variable, and the loop termination condition. These three elements are indispensable for a complete until-type loop structure.

The above is the detailed content of What is the difference between when loop and until loop?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn