/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package listaexercicios;

/**
 *
 * @author awolf
 */
public class Questao31 {

    public static void imprimaMatString(String mat[][]) {
        for (int i = 0; i < mat.length; i++) {
            System.out.println();
            for (int j = 0; j < mat[i].length; j++) {
                System.out.print(mat[i][j] + " ");
            }
        }
    }

    public static void main(String[] args) {
        String mat[][] = {
            {"ma", "ri", "an"},
            {"xu", "pa", "da"},
            {"gu", "lo", "va"}
        };
        
        imprimaMatString(mat);
    }
}
