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
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #72.8K
~381 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for Imperial Advent

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

Member Avatar for falguni.panchal
0
381

The End.