declara c3 a7 c3 a3o de matriz em java

Solutions on MaxInterview for declara c3 a7 c3 a3o de matriz em java by the best coders in the world

showing results for - "declara c3 a7 c3 a3o de matriz em java"
Maelia
14 Jun 2018
1// apenas declarando
2int matriz1[][] = new int[2][4]; // matriz com 2 linhas X 4 colunas
3
4// declarando e inicializando
5int matriz2[][] = { {1, 2, 3}, {4, 5, 6}, {7, 8, 9} };