Advertisement
Guest User

Untitled

a guest
May 27th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. while (zahl3 != 1)
  2. {
  3. if (zahl3 % teiler != 0)
  4. {
  5. while (zahl3 % teiler != 0)
  6. {
  7. teiler++;
  8. if (zahl3 % teiler == 0)
  9. {
  10. zahl3 = zahl3 / teiler;
  11. cout << teiler << " ";
  12. }
  13. }
  14. }
  15. else {
  16. zahl3 = zahl3 / teiler;
  17. cout << teiler << " ";
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement