in reply to Finding sum of all digits from 1 to 1 million.
I confused by the term 'DECIMAL DIGITS'. In the following sequence, I would count the number of decimal digits as:
In those 3 numbers, we have a total of 9 digits.100 sum: 3 101 sum: 6 102 sum: 9 ...
So if I use this code:
The result printed as 5888896, which is not 27000001.perl -E '$sum=0;for(1..1e6){$sum+=length($_);} say $sum;'
So how is the term 'DECIMAL DIGITS' defined? I think that is key to solving for the "real" answer.
Regards...Ed
"Well done is better than well said." - Benjamin Franklin
|
|---|