Advertisement
lukasd

algorytm "flaga dwukolorowa"

Dec 27th, 2017
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.50 KB | None | 0 0
  1. int main()
  2. {
  3.     int a[20];
  4.     for (int i = 0; i < 20; i++)
  5.     {
  6.         a[i] = rand() % 99 + 1;
  7.         printf("%d ", a[i]);
  8.     }
  9.     int j = 19;
  10.     for (int i = 0; i < 20 && i<j; i++)
  11.     {
  12.         if (a[i] < 50)
  13.         {
  14.  
  15.         }
  16.         else
  17.         {
  18.             for (; j >= 0; j--)
  19.             {
  20.                 if (i >= j)
  21.                 {
  22.                     break;
  23.                 }
  24.                 if (a[j] > 50)
  25.                 {
  26.  
  27.                 }
  28.                 else
  29.                 {
  30.                     std::swap(a[i], a[j]);
  31.                    
  32.                     j--;
  33.                     break;
  34.                 }
  35.                
  36.             }
  37.         }
  38.     }
  39.     printf("\n");
  40.     for (int i = 0; i < 20; i++)
  41.     {
  42.        
  43.         printf("%d ", a[i]);
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement