In the previous lesson, we have learned how to control the program flow using the If…ElseIf control structure. In this chapter, you will learn another way to control the program flow, that is, the Select Case control structure. However, the Select Case control structure is slightly different from the If….ElseIf control structure . The difference is that the Select Case control structure basically only make decision on one expression or dimension (for example the examination grade) while the If …ElseIf statement control structure may evaluate only one expression, each If….ElseIf statement may also compute entirely different dimensions.
|
|
Example 8.2
|
Example 8.3
Example 8.2 can be rewritten as follows:
|
