Q:

C Program to find the Sum of GP series

0

C Program to find the Sum of GP series

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#include <stdio.h>
#include <math.h>

void main()
{

    float g1,cr,i,n,j;
    float ntrm,gpn;
    float sum=0;

     printf("\n\n Find the Sum of GP series.:\n ");
     printf("-------------------------\n");

    printf("Input the first number of the G.P. series: ");
    scanf("%f",&g1);

    printf("Input the number or terms in the G.P. series: ");
    scanf("%f",&ntrm);

    printf("Input the common ratio of G.P. series: ");
    scanf("%f",&cr);


     printf("\nThe numbers for the G.P. series:\n ");
	 printf("%f ",g1);
	 sum=g1;

     for(j=1;j<ntrm;j++)
       {
        gpn=g1*pow(cr,j);
		sum=sum+gpn;
        printf("%f  ",gpn);
       }  

    printf("\nThe Sum of the G.P. series : %f\n\n",sum);
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now