int a[] = new int[5];
a[0] = 4;
a[1] = 8;
a[2] = 7;
a[3] = 12;
a[4] = 3;
System.out.println(a[2+1]);
Answers
Answered by
0
Answer:
iajshshshsbdnienenkqjwniwjd
Answered by
0
Answer:
12
Explanation:
in picture
2+1 =3
hence arr[2+1] = >arr[3]=>12
Attachments:
Similar questions