Microsoft Visual Basic 3.0

is an array which can store 5 values. To store a value in ‘compartment’ 3 use: a(3) = 75. Example In the following example the user is requested to enter 5 numbers. As they are entered each is assigned to array location n. For n = 1 To 5. results(n) = InputBox("Enter result" + Str(n)) Next n. For n = 1 To 5. Print results(n) Next n ................
................