Right Angled Triangle in C++ 1:
In this post of shapes in c, you will find the code for constructing a top left right angled triangle in C++ using "*".
For more visit: triangle programs in c.
For more visit: triangle programs in c.
Code:
Copy the code from here.
/* Join us athttp://shapesinc.blogspot.com for more codes of shapes */#include<iostream>using namespace std;int main(){cout << "Join http://shapesinc.blogspot.com for more codes of shapes\n\n";int size=0;cout << "Enter the size of the right angle triangle\n";cin>>size;for(int i=0; i<size; i++){for(int j=i; j<size; j++)cout << "*";cout << endl;}}
0 comments:
Post a Comment