Please enable JavaScript.
Coggle requires JavaScript to display documents.
Control Structure (Selection) (selection (multiple (if, else if, else if,…
Control Structure (Selection)
sequence
selection
one way
if (condition)
statement
executed only if the value of
expression is true
two way
if (expression)
statement1
else
statement2
compound statement
{
statement_1;
…
statement_n;
}
pembuka bracket dan tutp
multiple
if
else if
else if
else if
tanpa bracket
switch
switch (gander)
case 'A'
break ;
case 'B'
break ;
repeteition
One-Way
Two-Way
Multiple selection
Switch