Good! I'm starting to program in pseudocodigo similar to C and they gave me an exercise that is really costing me a lot ... The slogan is: Invert an array of 30 integers entered by keyboard (I can not use sorting methods such as bubbler, for example) I already create the vector and the load, but the part of inverting them is the one I can not get ... Can someone give me a little help? Thanks!
int v[30]; // creo el vector
int aux; // creo un auxiliar
int cont=0; // creo el contador
while(cont < 30) { //cargo las 30 posiciones del vector
scanf("%d", &aux)
v[cont] = aux
cont++
}