structured programming - Definition. Was ist structured programming
Diclib.com
Online-Wörterbuch

Was (wer) ist structured programming - definition

PROGRAMMING PARADIGM AIMED AT IMPROVING CLARITY, QUALITY, AND DEVELOPMENT TIME BY USING CONTROL STRUCTURES
Structured (programming); Program structure; Unstructed programming; Goto-less programming; Structured programmimg; Structured Programming; Early exit
  • NS diagrams]] (blue) and [[flow chart]]s (green).

structured programming         
<programming> Any software development technique that includes structured design and results in the development of a program consisting of blocks of code whose internal details are independent. Structured programming is usually done in a block-structured language. (2004-09-29)
Structured programming         
Structured programming is a programming paradigm aimed at improving the clarity, quality, and development time of a computer program by making extensive use of the structured control flow constructs of selection (if/then/else) and repetition (while and for), block structures, and subroutines.
Non-structured programming         
PROGRAMMING PARADIGM
Unstructured programming
Non-structured programming is the historically earliest programming paradigm capable of creating Turing-complete algorithms. It is often contrasted with the structured programming paradigm, in particular with the use of unstructured control flow using goto statements or equivalent.

Wikipedia

Structured programming

Structured programming is a programming paradigm aimed at improving the clarity, quality, and development time of a computer program by making extensive use of the structured control flow constructs of selection (if/then/else) and repetition (while and for), block structures, and subroutines.

It emerged in the late 1950s with the appearance of the ALGOL 58 and ALGOL 60 programming languages, with the latter including support for block structures. Contributing factors to its popularity and widespread acceptance, at first in academia and later among practitioners, include the discovery of what is now known as the structured program theorem in 1966, and the publication of the influential "Go To Statement Considered Harmful" open letter in 1968 by Dutch computer scientist Edsger W. Dijkstra, who coined the term "structured programming".

Structured programming is most frequently used with deviations that allow for clearer programs in some particular cases, such as when exception handling has to be performed.