fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void odliczanie( int tab[], int ilosc )
  5. {
  6. for( int i = 0; i < ilosc; i++ )
  7. {
  8. for( int j = 0; j < ilosc - 1; j++ )
  9. {
  10. if( tab[ j ] > tab[ j + 1 ] )
  11. swap( tab[ j ], tab[ j + 1 ] );
  12.  
  13. }
  14. cout << tab[ i ];
  15. }
  16.  
  17. }
  18.  
  19. void print(int t[], int s)
  20. {
  21. cout << endl;
  22. for(int i = 0; i < s; ++i)
  23. cout << t[i] << ' ';
  24. }
  25.  
  26. int main()
  27. {
  28. int tab[ 5 ] = { 4, 5, 1, 3, 7 };
  29. int ilosc;
  30. cin >> ilosc;
  31. odliczanie( tab, ilosc );
  32. print(tab, 5);
  33. return 0;
  34. }
Success #stdin #stdout 0s 15240KB
stdin
5
stdout
43457
1 3 4 5 7