Please enable JavaScript.
Coggle requires JavaScript to display documents.
Control Flow - Coggle Diagram
Control Flow
-
Labels
-
-
-
Label forms
-
Unsigned Integers FORTRAN, Pascal
In most languages, labels are attached to statements by colons
-
refers to the order in which statements of an imperative or declarative program are executed or evaluated
-
-
-
-
control statement
Basic mechanisms for controlling the execution of individual statements within a program. Initial control statements reflected underlying architecture
-
Iteration Statements
Iterative Statements
-
Counter-controlled loops
-
Some means of specifying the initial and terminal values of the loop variable, and the difference between sequential loop variable values
-
-
-
-
-
-
-
-
-
-
-
Goto controversy
-
Some languages do not support goto statement (e.g., Java)
Break statement
Causes control to move forward in the program to an
explicit point at the end of a given control structure
In java, break statement has 2 forms
-
-
-
-