Advertisement
Josif_tepe

Untitled

May 12th, 2024
458
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.42 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5.     int n;
  6.     cin >> n;
  7.  
  8.     int niza[n];
  9.     for(int i = 0; i < n; i++) {
  10.         cin >> niza[i];
  11.     }
  12.  
  13.     vector<int> cnt(101, 0);
  14.  
  15.     for(int i = 0; i < n; i++) {
  16.         cnt[niza[i]]++;
  17.     }
  18.     for(int i = 0; i <= 100; i++) {
  19.         for(int j = 0; j < cnt[i]; j++) {
  20.             cout << i << " ";
  21.         }
  22.     }
  23.  
  24.    
  25.  
  26.  
  27.     return 0;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement