×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Java
Posted by: raul cava martinez
Added: Mar 20, 2022 12:58 PM
Modified: May 11, 2022 6:45 AM
Views: 402
Tags: no tags
  1.   public static void imprimir(int v[][]){
  2.         for (int i = 0; i < v.length; i++) {
  3.             for (int j = 0; j < v.length; j++) {
  4.                 System.out.print(v[i][j]+" ");            
  5.             }
  6.             System.out.println("");
  7.         }
  8.     }