Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
0 Endorsements
Ranked #107.70K
~164 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for St John

#include <iostream> using namespace std; int tri(int n) { for (int a=1;a<=n;a++) { int b,c,d,e; for(int i=1;i<=n;i++) { b=n; c=b+1; d=n*c; e=d/2; return e; } } } int main() { int a; cout << "u want the eries upto ?" << endl; cin>>a; cout <<"the series is : "; for …

Member Avatar for Zawar_1
0
164

The End.