Joined
Last Seen
-1 Reputation Points
- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 6
- Posts with Downvotes
- 2
- Downvoting Members
- 3
0 Endorsements
Ranked #55.0K
2 Posted Topics
hi frnds!! i have d code for series x^!+x^2+x^3+....x^m with single loop only //wap to find sum of series and print series also //x+x^2+x^3+......x^n #include<iostream.h> #include<conio.h> void main() { clrscr(); int n,x,count1; int sum=0; cout<<"enter a number"; cin>>x; cout<<"enter nth term till which u want to compute"; cin>>n; int count=1; …
Re: sum of series
hello friends...i want to write code for series 1/1!+2/2!+....n/n! i have written d code but it prints sum 2 always... pl chk my code nd post d correct one is there enyway to do it with a single loop but without using arrays.. here u go wid code //wap to …
The End.
angelrapunzel