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

Flowgorithm - Documentation - Do

This document discusses a Do Loop, which is similar to a While Loop except that the block of statements inside the Do Loop is executed at least once before the conditional expression is checked. An example is provided of a Do Loop that accepts input for an 'age' variable and loops until a valid value between 1 and 100 is entered.

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)
59 views

Flowgorithm - Documentation - Do

This document discusses a Do Loop, which is similar to a While Loop except that the block of statements inside the Do Loop is executed at least once before the conditional expression is checked. An example is provided of a Do Loop that accepts input for an 'age' variable and loops until a valid value between 1 and 100 is entered.

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

Do Shape

Default Appearance

What it Does

A Do Loop is similar to a While Loop except that the block of
statements is executed at least once before the expression is
checked.

Example
The example, to the right, shows a Do Statement that accepts only
valid input. It will loop while the 'age' variable is less than 1 or greater
than 100.

You might also like