Eae galera
tp
tenho q faze um trabalho da facul q eh relacionado com matrizes e vetores
soh q n to conseguindo faze uma parte
tenho 2 vetores (arrays) e preciso junto em 1 soh
for(i=0; i<numJogos; i++)
{
time1[i] = tabelaResultado[i][0];
time2[i] = tabelaResultado[i][1];
}
String [] times = new String[time1.length + time2.length];
int postime1 = 0;
int postime2 = 0;
int postimes = 0;
while (postime1 < time1.length)
{
times[postimes] = time1[postime1];
postimes++;
postime1++;
}
while (postime2 < time2.length)
{
times[postimes] = time2[postime2];
postimes++;
postime2++;
}
}