Skip to content

Commit e634e5e

Browse files
Introduction to Arrays
1 parent 944a29f commit e634e5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

26.Introduction_To_Arrays/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class cwh_26_arrays {
4747
public static void main(String[] args) {
4848
int [] marks = {98, 45, 79, 99, 80};
4949
for (int i=marks.length-1; i>=0; i--) {
50-
System.out.println(i);
50+
System.out.println(marks[i]);
5151
}
5252
}
5353
}

0 commit comments

Comments
 (0)