How To Calculate The Value Of PI With A Program?

Writec++program calculate valueof pi from the infinte seriespi=4-4/3+4/5-4/7+4/9 ...print table show valueofpi?

  • print table show value of pi approximated by 1 term of this series,by 2 term, 3 term, etc. how many terms of this series do you have to use before you first get 3.14? 3.141? 3.1415? 3.14159

  • Answer:

    See below for the basic computation, with minimal output. Even though the algorithm is relatively simple, there's still the opportunity for some elegance in implementation. I wanted to show you a way to do that, in addition to giving a correct result. I'll leave it to you to display a table, if you need it, and add logic to determine when you've reached your estimate milestones. Or, you can just run it interactively and use trial and error to answer the accuracy questions. #include <iostream> #include <sstream> using namespace std; double piEst(unsigned, bool); typedef double (*func)(double,double); double add(double,double); double subtract(double,double); typedef struct { func f[2]; double den; } Op_t; int main(int argc, char *argv[]) { unsigned n; stringstream *ss; if (argc > 1) ss = new stringstream(argv[1]); if ((argc < 2) || (!((*ss) >> n)) || (n < 1)) { cout << "usage : " << argv[0] << " <n>" << endl; cout << " where <n> = number of terms, a positive integer" << endl; return -1; } double pi = piEst(n,false); cout << endl << "number of terms in series = " << n; cout << ", estimated pi = " << pi << endl; } double piEst(unsigned numTerms, bool display) { double num = 4.0; double pi = 0.0; Op_t op; op.f[0] = add; op.f[1] = subtract; op.den = 1.0; for (unsigned i = 0; i < numTerms; i++, op.den += 2.0) { pi = op.f[i%2](pi,num/op.den); if (display == true) cout << pi << endl; } return pi; } double add(double a,double b) { return a + b; } double subtract(double a,double b) { return a - b; }

Norah . at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

i apologize for the sloppy code. it was converted from an old book. const PISIZE = 30; int a[PISIZE]; int b[PISIZE]; void Array_Divide(int * array , int Divisor) { int i = 0, borrow = 0, q = 0; for (i=0; i<PISIZE; i++) { q = borrow * 10 + array[i]; borrow = q % Divisor; array[i] = q / Divisor; } } void Array_Multiply(int * array, int Mul) { int i=0, carry =0, q =0; for (i=PISIZE-1; i>-1; i--) { q = array[i] * Mul + carry; array[i] = q % 10; carry = q / 10; } } void Array_Subtract(int * arraya, int * arrayb) { int i, q = 0, m = 0; for (i = PISIZE; i>-1; i--) { q = (arraya[i] - arrayb[i] + 10); arraya[i] = q % 10; q = q / 10; if (q == 0) arraya[i - 1] = arraya[i - 1] - 1; } } void Array_Add(int * arraya, int * arrayb) { int i, q =0, m =0, carry =0; for (i = PISIZE; i>-1; i--) { q = arraya[i] + arrayb[i] + carry; arraya[i] = q % 10; carry = q / 10; } } bool Array_All_Zero(int * array) { int i; for (i=0; i < PISIZE; i++) { if (array[i] != 0) return(false); } return(true); } void Arc_Tan(int * arraya, int * arrayb, int s) { int n = 1; arrayb[1] = 1; Array_Divide(arrayb, s); Array_Add(arraya, arrayb); do { Array_Multiply(arrayb, n); Array_Divide(arrayb, s * s); n += 2; Array_Divide(arrayb, n); if (((int)((n - 1) / 2) % 2) == 1) { Array_Subtract (arraya, arrayb); } else { Array_Add (arraya, arrayb); } } while( Array_All_Zero(arrayb) == false); } int main(int argc, char* argv[]) { Arc_Tan( a, b, 2); Arc_Tan( a, b, 3); Array_Multiply( a, 4); for (int i=1; i < PISIZE; i++) { if(i==2) printf("%s", "."); printf("%i", a[i]); } return 0; }

bruteforce

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.