int[] arr = {1, 2, 3, 4, 5}; System.out.println(arr[2]);
int x = 5; int y = 10; int z = x + y; System.out.println(z);
0 Comments