fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. const int n=100;
  5.  
  6. int main()
  7. {
  8. int *A=(int*) malloc(n*sizeof(int));
  9. srand(time(NULL));
  10. for(int i=0; i<n; i++){
  11. A[i]=rand()%50*10;
  12. }
  13.  
  14. cout<<"Vetor aleatorio.";
  15. for(int i=0; i<n; i++){
  16. cout<< A[i]<<" ";
  17. }
  18.  
  19. for(int i=0; i < (n-1); i++){
  20. for(int j=0; j < (n-i-1); j++){
  21. if(A[j] > A[j+1]){
  22. int aux=A[j];
  23. A[j]=A[j+1];
  24. A[j+1]=aux;
  25. }
  26. }
  27. }
  28.  
  29. cout<<"Vetor ordenado:\n";
  30. for(int i=0; i<n; i++){
  31. cout<<A[i]<<" ";
  32. }
  33.  
  34. return 0;
  35. }
  36.  
Success #stdin #stdout 0s 4184KB
stdin
Standard input is empty
stdout
Vetor aleatorio.40 370 10 200 490 120 170 320 220 360 460 380 220 90 130 360 190 370 440 130 370 120 310 200 250 110 10 490 300 10 0 360 410 40 60 420 160 230 240 380 110 200 280 350 310 440 220 20 310 180 160 200 310 490 400 80 100 430 70 420 450 100 280 380 140 360 300 300 90 70 200 220 290 10 80 110 450 320 130 260 0 310 480 330 300 390 410 430 340 10 350 290 110 160 190 270 20 0 90 140 Vetor ordenado:
0 0 0 10 10 10 10 10 20 20 40 40 60 70 70 80 80 90 90 90 100 100 110 110 110 110 120 120 130 130 130 140 140 160 160 160 170 180 190 190 200 200 200 200 200 220 220 220 220 230 240 250 260 270 280 280 290 290 300 300 300 300 310 310 310 310 310 320 320 330 340 350 350 360 360 360 360 370 370 370 380 380 380 390 400 410 410 420 420 430 430 440 440 450 450 460 480 490 490 490