We can easily compute the sum of digits of a given number but is there any mathematics formula or pattern we can use to determine the sum of next numbers without having to sum all the digits again and again.
E.g.
- Sum of 1234=1+2+3+4=10
- Sum of 1235=1+2+3+5=11
- Sum of 1236=1+2+3+6=12 .......
so if given sum of 1234 we can see that sum of next number is sum+1. I can surely see some kind of pattern here but unable come up with any efficient algorithm.
Currently I use below method to calculate the sum of digits.
public int sum(long n) {
int sum = 0;
while (n != 0) {
sum += n % 10;
n /= 10;
}
return sum;
}
But I need to calculate the sum of digits of a sequence of numbers so currently I call the sum(int num) every time in a for loop as below
int num=1234;
for (int i=num;i<10000,i++){
int sum=sum(i);
}
Is there any efficient way to calculate the sum of next numbers if I already have or calculate the sum of only first number?