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
linked-list x 1
c++ x 1
1 Posted Topic
Re: c++ coding
#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 …
The End.
Zawar_1