Answers for "sum of the all digits of a number"

0

sum the digits of an integer

def getSum(n)
  n.digits.sum
end

print "Sum of digits = ", getSum(555);
Posted by: Guest on May-27-2021

Code answers related to "sum of the all digits of a number"

Browse Popular Code Answers by Language