Guest User

Untitled

a guest
Jan 22nd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5. int num;
  6. cout << "Insert you number=";
  7. cin >> num;
  8.  
  9. for (int i = 1; i <= num; i++){
  10. if (num%i == 0)
  11. cout << i<<endl;
  12. }
  13. }
Add Comment
Please, Sign In to add comment