Ver originalfor (int i=0; i < TAM; i++){ if (i < 1) continue; if (v[i] < v[i-1]) { aux = v[i]; v[i] = v[i-1]; v[i-1] = aux; i = 0; }}