This page is still...
All computer programs consist of three basic elements:
 | sequences of statements or instructions |
 | conditional branches where the continuation of the sequence is
different according to the result of a certain test |
 | loops that cause a sequence of statements to be repeated
several times |
In this simple project you will learn about two kinds of decision structures
and two kinds of loops:
 | If...Then |
 | Select Case |
 | For...Next |
 | Do...Loop |
|