(String args[])
| 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 |
nothing calls this directly
no test coverage detected