MCPcopy Index your code
hub / github.com/careercup/ctci / print

Method print

java/Chapter 18/Question18_13/Rectangle.java:91–98  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

89
90 /* Print the rectangle out, row by row. */
91 public void print() {
92 for (int i = 0; i < height ; i++) {
93 for (int j = 0; j < length; j++) {
94 System.out.print(matrix[i][j]);
95 }
96 System.out.println(" ");
97 }
98 }
99}

Callers 1

mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected