Advertisement
Mihai_Preda

Untitled

Mar 19th, 2021
257
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.30 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int n;
  8.     cin >> n;
  9.     for(int d = 2; d * d <= n; d++)
  10.         if(n % d == 0)
  11.         {
  12.             cout << d << " ";
  13.             if(d != n/d)
  14.                 cout << n/d << " ";
  15.         }
  16.     return 0;
  17. }
  18.  
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement