how can you make a program where the user gives you an input for the range of the array, and proceeds to also fill the array with integers as inputs. In pseudo-programming language something like this:
array_length = input('How long is the array?')
counter = 0
while counter <= array_length:
array[counter] = input()
counter = counter + 1
Comments
Post a Comment