Home Common Problem What are the three basic structures of a program?

What are the three basic structures of a program?

Mar 02, 2019 am 10:08 AM
sequential structure Select structure Loop structure

There are three basic structures of the program: 1. Sequential structure, each operation in the program is executed in sequence from top to bottom according to the order in which it is arranged in the source code; 2. Selection structure, based on a specific condition After making the judgment, select one of them to execute; 3. Loop structure, in the program, one or more operations need to be repeatedly performed until the condition is false or true, and the loop will not stop.

What are the three basic structures of a program?

The operating environment of this tutorial: Windows 7 system, Dell G3 computer.

Any simple or complex algorithm can be composed of three basic structures: sequential structure, selection structure and loop structure. Let's take a look at these three basic structures.

Sequential structure

The sequential structure is the simplest program structure. Each operation in the program is based on their order in the source code. The order of arrangement is from top to bottom.

The flow chart is as follows:

What are the three basic structures of a program?

Selection structure

Selection structure is used for judgment Given conditions, the flow of the program is controlled. It will select one of them for execution after judging based on a specific condition.

The flow chart is as follows:

What are the three basic structures of a program?

Loop structure

The loop structure refers to A program structure that requires repeated execution of one or more operations until the condition is false or true.

It determines whether to continue executing a certain function or to exit the loop based on the conditions in the loop body. According to the judgment conditions, the loop structure can be subdivided into the following two forms:

● When type loop structure: judge (condition) first and then execute.

● Until loop structure: execute first and then judge.

The loop structure can be seen as a combination of a conditional judgment statement and a turnaround statement. In addition, there are three elements of the loop structure: loop variables, loop body and loop termination condition. The loop structure is represented by a judgment box in the program block diagram. The conditions are written in the judgment box. The two exits correspond to the condition establishment and the condition respectively. Among the different instructions executed when it is not true, one of them should point to the loop body, and then return from the loop body to the entrance of the judgment box.

The flow chart is as follows:

What are the three basic structures of a program?

"When type" loop: Execute block A when the given condition is met, otherwise block A will not be executed and jump directly to the following part for execution.

"Until type" loop: Its meaning is: Execute block A until the given conditions are met (block A will no longer be executed if the conditions are met).

For more programming-related knowledge, please visit: Programming Teaching! !

The above is the detailed content of What are the three basic structures of a program?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

JS loop learning: use of while loop statements (detailed examples) JS loop learning: use of while loop statements (detailed examples) Aug 03, 2022 pm 06:04 PM

The purpose of a loop is to repeatedly execute a certain piece of code. Using loops can reduce programming pressure, avoid code redundancy, improve development efficiency, and facilitate later maintenance. The while loop is the simplest loop statement provided in JavaScript. Let's learn about the use of while loops and do-while loops.

What are the new loops in es6? What are the new loops in es6? Nov 07, 2022 pm 07:29 PM

There is a new loop statement in es6: "for of" loop. The "for..of" statement can loop through the entire object and is a loop of a series of values ​​produced by the iterator; the value of the "for..of" loop must be an iterable (iterable), and the syntax "for(current value of array){...}". The for-of loop not only supports arrays, but also supports most array-like objects; it also supports string traversal, and traverses strings as a series of Unicode characters.

What are the three basic structures of a program? What are the three basic structures of a program? Mar 02, 2019 am 10:08 AM

There are three basic structures of the program: 1. Sequential structure, each operation in the program is executed from top to bottom in the order in which it is arranged in the source code; 2. Selection structure, after judging based on a specific condition, select one of them One execution; 3. Loop structure. In the program, one or more operations need to be executed repeatedly, and the loop will not stop until the condition is false or true.

JS loop learning: use of for loop statements (detailed examples) JS loop learning: use of for loop statements (detailed examples) Aug 03, 2022 pm 06:45 PM

In the previous article "JS Loop Learning: The Use of While Loop Statements (Detailed Examples)", we briefly learned about the while loop and the do while loop, and today we will introduce another kind of loop-the for loop statement. I hope it will be useful to everyone. Helped!

Learn Loop Structures: for, foreach, and while statements Learn Loop Structures: for, foreach, and while statements Jun 20, 2023 pm 06:51 PM

Learn loop structures: for, foreach, and while statements In programming, loop structures are essential because they allow the program to repeatedly execute a section of code, thereby saving time and amount of code. In programming languages ​​such as PHP, Java, and C#, there are three loop structures: for, foreach, and while statements. In this article, we will introduce these three loop structures respectively, as well as their application scenarios and some usage techniques in programming. for loop The for loop is one of the most basic loop structures.

JS loop learning: break out of loop statements break and continue JS loop learning: break out of loop statements break and continue Aug 03, 2022 pm 07:08 PM

In the previous article, we took you to learn several loop control structures in JS (while and do-while loops, for loops). Let’s talk about the break and continue statements to jump out of the loop. I hope it will be helpful to everyone!

What is the usage of else in Python loop structure? What is the usage of else in Python loop structure? Sep 26, 2023 am 10:52 AM

In Python's loop structure, the else block is used to execute a specific piece of code when the loop ends normally. If the loop is interrupted by a break statement, the code in the else block will not be executed. Using else blocks can make the code clearer and easier to understand, and can perform some necessary operations after the loop ends.

What are the common programming techniques for PHP programming? What are the common programming techniques for PHP programming? Jun 12, 2023 am 09:15 AM

With the increasingly perfect network environment and web page construction, PHP, as an excellent server-side scripting language, is widely used in the development of websites and applications. In order to better improve PHP programming skills, today we will share some common PHP programming skills. The following is a detailed introduction: Try to avoid using global variables. In PHP programming, global variables are a ubiquitous variable type. However, using global variables will increase the complexity and unreadability of the code, which can easily lead to unnecessary errors and problems. Therefore, when programming PHP