MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / display

Method display

Programs/TwoDArrays.java:19–27  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

17 }
18 }
19 public void display() {
20 // Displaying array
21 System.out.println("Displaying array: ");
22 for (i = 1; i <= 3; i++) {
23 for (j = 1; j <= 3; j++) {
24 System.out.println("2D Array: " + "["+i+"]" + "["+j+"] : " + arr[i][j]);
25 }
26 }
27 }
28}
29
30public class TwoDArrays {

Callers 1

mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected