uses console
/*
for (opt init(s); opt condition; opt iteration(s))
statement(s);
--------------------------
opt init(s)
while (condition)
opt statement(s)
opt iteration(s)
wend
*/
/*
int i, a
for (i=0, a=10; i<5; i++, a--)
{
cout << i << "-" << a << endl;
}
*/
int i, a
i=0 : a=10 'inits
While i<5 'condition
printl i " - " a 'statement
i++ : a-- 'iterations
wend
printl
/*
int i, j;
for ( i = 5, j = 10; i + j < 20; i++, j++ ) {
cout << "i + j = " << (i + j) << '\n';
}
*/
int i,j
i = 5 : j = 10 'inits
while i + j < 20 'condition
printl "i + j = " (i + j) 'statement
i++ : j++ 'iterations
wend
printl
/*
int max = 5
int i = 0;
for(;;)
{
i++;
// use break to escape the loop
if(i > max)
break;
printf("i = %d\n",i);
}
*/
int max=5, i=0
do
i++
if i > max then exit do
printl "i = " i
loop
printl "Enter ..."
waitkey