Guest User

Untitled

a guest
May 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int x;
  7. cout<<"Enter a number: ";
  8. cin>>x;
  9. cout<<"The factors are: ";
  10. for(int a = 1; a<=x; a++)
  11. {
  12. if(x%a==0)
  13. cout<<a<<" ";
  14. }
  15. cin.get();
  16. return 0;
  17. }
Add Comment
Please, Sign In to add comment