Do-while example.

This commit is contained in:
Stefano Sanfilippo 2014-11-29 01:08:12 +01:00
parent a95bdf4c6c
commit 10d8ede0d6

View File

@ -183,6 +183,20 @@ defined as follows:
<statements> <statements>
e brematura anche, se <condition> e brematura anche, se <condition>
For example:
voglio antani, Necchi come se fosse 10
stuzzica:
antani come fosse antani menu 1
e brematura anche, se antani maggiore di 0
maps to:
int antani = 10;
do {
antani = antani - 1;
} while (antani > 0);
Branch Branch
------ ------