Can someone tell me why my code does not execute the System.out.println("");
of the end if if it returns true
.
public static void tabelear (int tabela[][]){
for(int linha=0;linha < tabela.length; linha++){
for(int coluna=0; coluna < tabela[linha].length ; coluna++ ){
System.out.print(tabela[linha][coluna]+" ");
if (coluna-1 == tabela[linha].length){
System.out.println("");
}
}