MCPcopy Create free account
hub / github.com/algorithmzuo/algorithm-journey / print

Method print

src/class133/ShowDetails.java:55–63  ·  view source on GitHub ↗
(int n)

Source from the content-addressed store, hash-verified

53 }
54
55 public static void print(int n) {
56 for (int i = 1; i <= n; i++) {
57 for (int j = 1; j <= n + 1; j++) {
58 System.out.printf("%.2f ", mat[i][j]);
59 }
60 System.out.println();
61 }
62 System.out.println("========================");
63 }
64
65 public static void main(String[] args) {
66 // 唯一解

Callers 15

mainMethod · 0.95
mainMethod · 0.45
mainMethod · 0.45
mainMethod · 0.45
mainMethod · 0.45
mainMethod · 0.45
mainMethod · 0.45
mainMethod · 0.45
mainMethod · 0.45
mainMethod · 0.45
mainMethod · 0.45
mainMethod · 0.45

Calls 1

printlnMethod · 0.45

Tested by

no test coverage detected