Student Lab 1: Input, Processing, and Output

Values stored in an array are called elements. Each element has a subscript that makes it unique. An array is defined as follows: Declare Integer numbers[10] Integer defines the type of numbers that can be stored, numbers is the name of the array, and [10] is how many numbers can be stored. ................
................