#include < iostream >
using namespace std;
#define n 3000
#define len (10*n/3)
main(void)
{
    unsigned long i, j, nines = 0, predigit = 0, pi[len + 1], c = -1;
    unsigned long long A[len + 1], r = 0ULL, q = 0ULL, x = 0ULL;
    for (i = 0; i < len; i++)
        A[i] = 2ULL;
    for (j = 0; j < n; j++) {
        for (i = len; i >= 1; i--) {
            x = (long long)A[i] * 10 + q * i;
            A[i] = (long long)x % (2 * i - 1);
            q = (long long)x / (2 * i - 1);
        }

        A[1] = q % 10;
        q = q / 10;

        if (q == 9)
            nines++;
        else if (q == 10) {
            pi[++c] = predigit + 1;

            for (i = 0; i < nines; i++)
                pi[++c] = 0;
            predigit = 0;
            nines = 0;
        } else {
            pi[++c] = predigit;
            predigit = q;
            if (nines > 0) {
                for (i = 0; i < nines; i++)
                    pi[++c] = 9;
                nines = 0;
            }
        }

    }

Algorithm: http://www.mathpropress.com/stan/bibliography/spigot.pdf So I have to write a program for the Arithmetic Analysis Class that computes the first 10000 decimal digits of Pi. I used the algorithm found in the linked pdf. I've run into some problems though. Up to the first 2999 digits everything's ok. After that point every digits computed is equal to 0. I tried to convert some of the variables that handled most of the computation to long long(s) believing that probably after that point they where overflowing, but nothing changed. Any ideas? Thanks in advance.

link|improve this question
I think you have overflow in a temporary somewhere. – Kevin Nov 10 '11 at 22:50
2  
Can you set a watchpoint in a debugging environment for Pi[2998] and try to catch the problem single-stepping your way through the code? – sarnold Nov 10 '11 at 22:58
feedback

4 Answers

up vote 1 down vote accepted

Actually, if I run your code it works. I think you just read the algorithm wrong.

Try changing #define n 3000 to #define n 10000 at the beginning. Then at the end just print out pi[i] for i = 0 to 10k. Also, pi only needs to be an array of n, not len.

Read the other posts here too, though. They make some good points.

link|improve this answer
Meh, how could I have missed that? Anyway thanks a lot! – Theodoros Theodoridis Nov 10 '11 at 23:51
Nice catch. Thanks! – sarnold Nov 11 '11 at 0:24
feedback

The first thing that stands out to me is the following:

unsigned long long A[len + 1], r = 0ULL, q = 0ULL, x = 0ULL;
for (i = 0; i < len; i++)
    A[i] = 2ULL;
for (j = 0; j < n; j++) {
    for (i = len; i >= 1; i--) {
        x = (long long)A[i] * 10 + q * i;

You've declared A[len+1] to be of type unsigned long long and then pretty quickly coerce it to a simple long long. I'd standardize entirely on either long long or unsigned long long and remove all casts.

link|improve this answer
feedback

I noticed that you don't initialize A[len] to 2ULL like all the other values in A. Also pi isn't initialized at all as far as I can see.

link|improve this answer
feedback

Your probably going to need a bignumber library like this one.

link|improve this answer
The point of the homework is to implement the techniques behind biginteger libraries. :) – sarnold Nov 10 '11 at 22:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.