Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 306 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 306 Bytes

java-array

Java with array use

Example array create; // Array Oluşturma.

String[] array = { "Username","password","mail" };

Printing on the screen // Ekrana Array'ı yazdırmak.

System.out.println(array[0]);

Output

alt text