Advertisement
heroys6

[softheme] [C++] Test 2

Oct 2nd, 2015
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.     int val;
  8.     cout << "Enter the number: ";
  9.     cin >> val;
  10.    
  11.     if (val % 2) {
  12.         cout << val << "\n";
  13.         for (int i = val / 3; i >= 1; i -= 2)
  14.             if ((val % i) == 0) cout << i << "\n";
  15.     }
  16.     else {
  17.         cout << val << "\n";
  18.         for (int i = val / 2; i >= 1; i--)
  19.             if ((val % i) == 0) cout << i << "\n";
  20.     }
  21.  
  22.     system("pause");
  23.     return 0;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement