Here you can find the source of printMatrix(int[][] s)
private static void printMatrix(int[][] s)
//package com.java2s; //License from project: Open Source License import java.util.Arrays; public class Main { private static void printMatrix(int[][] s) { for (int i = 0; i < s.length; i++) { System.out.println(Arrays.toString(s[i])); }/*from w ww .ja v a2 s. c om*/ } }