15
votes
9answers
650 views
Sum of digits of a factorial
Link to the original problem
It's not a homework question. I just thought that someone might know a real solution to this problem.
I was on a programming contest back in 2004, and there was this …
0
votes
3answers
147 views
My ‘cout’ isn’t giving correct value - why?
Simple "sum of digits" code. Compiles but when executed, the last cout gives a "0" for the num int rather than the actual user-input number.
Feel free to c&p into your own compiler, if you're so …
4
votes
7answers
2k views
Sum of digits in C#
What's the fastest and easiest to read implementation of calculating the sum of digits?
I.e. Given the number: 17463 = 1 + 7 + 4 + 6 + 3 = 21
