Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 502 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 502 Bytes

Java

Java Code (i.e. Data Structures, OOP, Algorithms and Coursework)

Array - data structure consisting of a collection of elements, of same memory size, each identified by at least ibe array index or key.

[1|2|3|4|5|6|7|8|9|10]

|---------------------| = array length 10.

Iterating through array as array[i] where is the index for the array.

for(int i = 0; i < array.length; i++) index starts at 0

system.out.print(array[i] + " "); printing array in unordered/ordered fashion.