Advertisement
yeskendir_sultanov

sort in descending order

Mar 29th, 2024
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. bool cmp(int x, int y) {
  6.     return (x > y);
  7. }
  8.  
  9. int main() {
  10.     std::ios_base::sync_with_stdio(false);
  11.     cin.tie(0);
  12.     cout.tie(0);
  13.  
  14.     int n;
  15.     cin >> n;
  16.     int a[n];
  17.     for (int i = 0; i < n; ++i) {
  18.         cin >> a[i];
  19.     }
  20.    
  21.     // [0; n)
  22.     sort(a + 0, a + n, &cmp);
  23.    
  24.     for (int i = 0; i < n; ++i) {
  25.         cout << a[i] << " ";
  26.     }
  27.    
  28.     return 0;
  29. }
  30.  
  31.  
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement