alon2k2

Functions

Apr 4th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.10 KB | None | 0 0
  1.     public static int sumOfDigits(int a) {
  2.         return a == 0 ? a: a + sumOfDigits(--a);
  3.     }
Add Comment
Please, Sign In to add comment