Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3.  
  4. using namespace std;
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8. int a;
  9. cout<<"Podaj liczbe: ";
  10. cin>>a;
  11.  
  12. cout<<"Podzielna przez:";
  13.  
  14. if(a%2==0) cout<<" 2";
  15. if(a%3==0) cout<<" 3";
  16. if(a%5==0) cout<<" 5";
  17. if(a%7==0) cout<<" 7";
  18.  
  19. cout<<endl;
  20.  
  21. system("PAUSE");
  22. return EXIT_SUCCESS;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement