Posts by Lucas Bandeira • 1 point
1 post
-
0
votes0
answers45
viewsQ: How could I arrange this code for it to print the numbers of the vector increasingly?
//Questão 4 #include <stdio.h> #define TAM 10 int main() { int i, valorVET, VET[TAM]; printf("Digite os 10 numeros:\n"); for(i = 0; i < TAM; i++) { scanf("%d", &VET[i]); } for(i = TAM -…