Full width home advertisement

HTML

Tech News

Ad

 Write a c program to find x1+x2+x3+...+xn.



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

void main()
 {
	int x=1,i,j;
	long int sum=0;
	clrscr();
	printf("Enter the value of x= ");
	scanf("%d",&x);
	printf("Enter the value of i= ");
	scanf("%d",&i);
	for(j=1;j<=i;j++)
	{
	sum=sum+pow(x,j);
	}
	printf("answer= %d",sum);
	getch();
 }

Thank you for visitng seeya again

No comments:

Post a Comment

Bottom Ad [Post Page]