Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
10answers
8k 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 ...
8
votes
9answers
10k 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
3
votes
6answers
358 views

Sum of factorials for large numbers

I want to calculate the sum of digits of N!. I want to do this for really large values of N, say N(1500). I am not using .NET 4.0. I cannot use the BigInteger class to solve this. Can this be ...
1
vote
4answers
507 views

Append a digit to an integer and make sure sum of each digits ends with 1

What is the algorithm in c# to do this? Example 1: Given n = 972, function will then append 3 to make 9723, because 9 + 7 + 2 + 3 = 21 (ends with 1). Function should return 3. Example 2: Given n = ...
0
votes
3answers
202 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 ...