artemgf

Саботаж

May 1st, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.49 KB | None | 0 0
  1. #define _USE_MATH_DEFINES
  2. #include <iostream>
  3. #include <conio.h>
  4. #include <string>
  5. #include <set>
  6. #include <map>
  7. #include <algorithm>
  8. #include <string>
  9. #include <math.h>
  10. #include <vector>
  11. #include <cmath>
  12.  
  13. using namespace std;
  14.  
  15. int main()
  16. {
  17.     int n, size[25001] = { 0 }, prom;
  18.  
  19.     cin >> n;
  20.  
  21.     for (int i = 1; i <= n; i++)
  22.     {
  23.         cin >> prom;
  24.         size[prom]++;
  25.     }
  26.    
  27.     for (int i = 25000; i > 0; i--)
  28.         for (int j = 1; j <= size[i]; j++)
  29.             cout << i << endl;
  30.     _getch();
  31.     return 0;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment