Content deleted Content added
m →Statements and blocks: byp redir |
m →Loops: -changed to one true brace style as per its following example blocks. |
||
Line 39:
=== Loops ===
In C, C++, C#, and Java:
while (''boolean expression'')
'''{''' ''statement(s)''
'''}'''
do
'''{''' ''statement(s)''
'''}''' while (''boolean expression'');
for (''initialisation''; ''termination condition''; ''incrementing expr'')
'''{''' ''statement(s)''
'''}'''
|