#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.
Pi[2998]and try to catch the problem single-stepping your way through the code? – sarnold Nov 10 '11 at 22:58