Guest User

Untitled

a guest
Jul 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. int divide(int x, int y) {
  2. if(x >= y)
  3. return (1 + divide(x - y, y));
  4. if(x)
  5. printf("Zahl nicht teilbar -> Rest: %d -> ", x);
  6. return 0;
  7. }
Add Comment
Please, Sign In to add comment