Joined
Last Seen
-7 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
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
0 Endorsements
Ranked #72.8K
1 Posted Topic
Hi Michel, Here are the solutions you were looking for. 1) Rectangular Triangle: [code] #include<iostream.h> #define N 6 /* Worksheet II 31th July,2008 Falguni Complete Aditions*/ int main() { int i,j; cout <<"Rectangular triangle using * is :\n"; for (i=0;i<6;i++) { for (j=0;j<i;j++) { cout <<"*\t"; } cout <<"\n"; } …
The End.
falguni.panchal