Practical Electron Microscopy and Database

An Online Book, Second Edition by Dr. Yougui Liao (2006)

Practical Electron Microscopy and Database - An Online Book

Chapter/Index: Introduction | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | Appendix

Comparison between FOR and WHILE statements

In many cases, WHILE statement can be replaced by FOR statements. Table 1140 shows examples in which both the FOR and WHILE statements are equivalent.

Table 1140. FOR and WHILE statements which are equivalent.

Examples FOR statement WHILE statement
Format FOR statement:
         for (Statement1; Expression; Statement2 )
         Statement3
Statement1
         while ( Expression )
         {
             Statement3
             Statement2
         }
Script example FOR script WHILE script