0% found this document useful (0 votes)
26 views

Flowgorithm - Documentation - For

This document discusses for loops and provides an example. A for loop increments a variable through a range of values as a common replacement for a while statement. The example prints numbers from 1 to 100 with the variable 'n' starting at 1 and increasing by 1 each loop iteration until it reaches 100.

Uploaded by

istiqlal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views

Flowgorithm - Documentation - For

This document discusses for loops and provides an example. A for loop increments a variable through a range of values as a common replacement for a while statement. The example prints numbers from 1 to 100 with the variable 'n' starting at 1 and increasing by 1 each loop iteration until it reaches 100.

Uploaded by

istiqlal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Main About Download Documentation Resources

For Shape

Default Appearance

What it Does

For Loops increment a variable through a range of values. This is a common,
useful, replacement for a While Statement.

Example
The example, to the right, prints the numbers from 1 to 100. The loop executes
100 times. The value of 'n' starts at 1 and increases by 1 each time the loop
executes. The loop ends when 'n' reaches 100.

You might also like