Skip to content

Instantly share code, notes, and snippets.

@belushkin
Last active September 26, 2018 16:23
Show Gist options
  • Save belushkin/d99cfabc51953b980a81641f2be4a0f5 to your computer and use it in GitHub Desktop.
Save belushkin/d99cfabc51953b980a81641f2be4a0f5 to your computer and use it in GitHub Desktop.
sum Digits
<?php
function sumDigits($n)
{
return ($n == 0) ? 0 : $n%10 + sumDigits($n/10);
}
// Driver Code
$n = 687;
$res = sumDigits($n);
echo("$res");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment