sum the digits of an integer
def getSum(n)
n.digits.sum
end
print "Sum of digits = ", getSum(555);
sum the digits of an integer
def getSum(n)
n.digits.sum
end
print "Sum of digits = ", getSum(555);
sum the digits of an integer
#include <stdio.h>
int getSum(unsigned long long n) {
int sum = 0;
for (; n; n /= 10)
sum += n % 10;
return sum;
}
int main(){
printf("Sum of digits = %d\n", getSum(555));
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us