The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
3answers
61 views

Unknown factor in answer

I can't find the problem with what I wrote. I am attempting Project Euler #16, where I need to sum all digits of 2^1000. My program works with small numbers, but as numbers get around 18 digits or so, ...
1
vote
3answers
109 views

sum quantity of dictionaries in array

I have a NSArray containing a list of NSDictionary. Like: NSArray *array = ...; NSDictionary *item = [array objectAtIndex:0]; NSLog (@"quantity: %@", [item objectForKey: @"quantity"]); How can I ...
-1
votes
4answers
399 views

a simple program that counts and sums digits. How can I make it work? [closed]

So I've to write a simple program(that loops) where you can enter an int and it spews out the number count and the sum of the numbers. Since I am such a tard when it comes to programming, I just ...
3
votes
6answers
847 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
822 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 = ...
33
votes
9answers
14k 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
259 views

My 'cout' isn't giving correct value - why?

Simple "sum of digits" code. It compiles but when executed, the last cout gives a "0" for the num int rather than the actual user-input number. Feel free to copy and paste this into your own ...
11
votes
9answers
19k 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