Advertisement
overridetut

Untitled

Apr 13th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <iostream>
  3. using namespace std;
  4. int main (){
  5. int a,b,c;
  6. cout<<"Unesite broj: ";
  7. cin>>a;
  8. b=a;
  9. for (int i = 0; i<100;i++){
  10. while(a){
  11. a++;
  12. if(a%b==0)
  13. {
  14. cout<<a<<endl;
  15. break;
  16. }
  17.  
  18. }
  19. }
  20.  
  21. system("PAUSE");
  22. return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement