Answers for "Compute sum of digits in all numbers from 1 to n"

1

algorithms for Determine the sum of al digits of n

def sum_of_digits(n): 
	sum = 0
	while (n != 0): 
		sum = sum + int(n % 10) 
		n = int(n/10) 
	return sum
Posted by: Guest on October-20-2020
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 "Compute sum of digits in all numbers from 1 to n"

Python Answers by Framework

Browse Popular Code Answers by Language