Skip to content

Commit be7ff42

Browse files
committed
added arrays\Arrays.java
1 parent da7beb8 commit be7ff42

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

arrays/Arrays.java

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package arrays;
2+
3+
public class Arrays {
4+
public static void main(String[] args) {
5+
6+
int array[]={2,3,4,52,7,32,34};
7+
8+
9+
10+
System.out.println(array[2]);
11+
12+
13+
14+
15+
16+
}
17+
}

0 commit comments

Comments
 (0)