Posts
 
Reputation
Joined
Last Seen
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
1 Commented Post
0 Endorsements
~302 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for angelrapunzel

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; …

Member Avatar for NathanOliver
0
121
Member Avatar for Tejas

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 …

Member Avatar for angelrapunzel
0
181

The End.