I am wanting to building an ArrayList
, that later will be used to display information to a table.
The Issue is, I want my array to contain information that is in increments of 5000, up to 150+% the initial value.
IE:
User enters 100000.
The information in the array would look as such.
100002
105002
110002
115002
120002
125002
.
.
.
.
150002
155002
No code yet other than collect user input, just looking for a place to start with this.