اكتب برنامج بلغة C لإيجاد مجموع سلسلة .G.P

  • برمجة
  • برمجة سي c

اكتب ببرنامج بلغة C لإيجاد مجموع سلسلة .G.P

الخرج المتوقع :

Input the first number of the G.P. series: 3
Input the number or terms in the G.P. series: 5
Input the common ratio of G.P. series: 2
                                                                                                              
The numbers for the G.P. series:
 3.000000 6.000000  12.000000  24.000000  48.000000
The Sum of the G.P. series : 93.000000

الأجوبة

/*Write a program in c to find the Sum of GP series*/

#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);

/*-------- generate G.P. series ---------------*/
     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);
       }  
/*-------- End of G.P. series generate ---------------*/
    printf("\nThe Sum of the G.P. series : %f\n\n",sum);
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...