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

Method main

Programs/SortNonBoundary.java:98–111  ·  view source on GitHub ↗
(String args[])

Source from the content-addressed store, hash-verified

96 System.out.println("Sum of the Diagonal Elements : "+sum);
97 }
98 public static void main(String args[])
99 {
100 SortNonBoundary ob = new SortNonBoundary();
101 ob.input();
102 System.out.println("The original matrix:");
103 ob.printArray();
104 ob.convert(1);
105 ob.sortArray();
106 ob.convert(2);
107 System.out.println("The Rearranged matrix:");
108 ob.printArray();
109 System.out.println("The Diagonal Elements:");
110 ob.printDiagonal();
111 }
112}
113

Callers

nothing calls this directly

Calls 5

inputMethod · 0.95
printArrayMethod · 0.95
convertMethod · 0.95
sortArrayMethod · 0.95
printDiagonalMethod · 0.95

Tested by

no test coverage detected