Hello! So there's a problem.
We're given a file.txt with a lot of numbers (let's consider the amount is greater than 1000). On the first line we can see the amount of numbers. The next lines contain numbers (1 line = 1 number). So we need to write a code which will autofill arrays with all these numbers. We're not allowed to fill one array with more than 100 elements, because it will destroy our PC (I've read it somewhere).
Example of the file.txt:
5
78
67
56
45
23
I don't know how to auto create arrays depending on an amount of numbers we have.
I will be grateful for the help.
P. S. please don't write and suggest very difficult constructions, I won't understand them, because I am the beginner in programming :D