Advertisements
Advertisements
Question
Write a program to find sum of the series
S = 1 + x + x2 +..... + xn
Short Note
Solution
using namespace std;
#include
int main()
{
int sum=1,x,i,t,n;
cout<<“\nEnter N value”;
cin>>n;
cout<<“\nEnter x value … “;
cin>>x;
t=x;
for(i=l;i<=n;i++)
{
sum = sum + t;
t = t * x;
}
cout<<“SUM = “<<sum;
}
Output
shaalaa.com
Statements
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
What is the alternate name of the null statement?
In C++, the group of statements should be enclosed within: ______
Identify the odd one from the keywords of jump statements?
What are a null statement and compound statement?
Correct the following code sigment:
if (x = 1)
p = 100;
else
p = 10;
Compare an if and a ? : operator.
Write a program to find the LCM and GCD of two numbers.