Advertisement
Josif_tepe

Untitled

Feb 21st, 2025
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. using namespace std;
  4.  
  5.  
  6. int main()
  7. {
  8.     int n;
  9.     cin >> n;
  10.    
  11.     for(int i = 1; i <= n; i++) {
  12.         if(n % i == 0) {
  13.             cout << i << " ";
  14.         }
  15.     }
  16.    
  17.    
  18.    
  19.     return 0;
  20. }
  21.  
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement