Donate. I desperately need donations to survive due to my health

Get paid by answering surveys Click here

Click here to donate

Remote/Work from Home jobs

Assembly mips 32 creating and filling array?

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