fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.  
  6. // variáveis
  7. int vetor[5] = {0};
  8. int aux, i=0, j=0;
  9. printf("Entre com numeros\n\n");
  10.  
  11. // input
  12. for(int i=0;i<5;i++){
  13. scanf("%i", & vetor[i]);
  14. }
  15.  
  16. //Ordenação
  17. for(i=0;i<5;i++){
  18. for(j=0;j<(5-1);j++){
  19. if(vetor[j] > vetor[j+1]){
  20. aux = vetor[j];
  21. vetor[j] = vetor[j+1];
  22. vetor[j+1] = aux;
  23. }
  24. }
  25.  
  26. }
  27.  
  28. //Output
  29. for(int i=0;i<5;i++){
  30. printf("%i\t",vetor[i]);
  31. }
  32.  
  33.  
  34. return 0;
  35. }
  36.  
Success #stdin #stdout 0s 9424KB
stdin
2
9
3
7
1
stdout
Entre com  numeros

1	2	3	7	9