Tuesday 13 August 2013

Right Angled Triangle 2

Right Angled Triangle in C++ 2:

In this post of shapes in c language, you will find the code for constructing a bottom left right angled triangle in C++ using "*". 

Purpose of this code of shapes in c:

The main purpose of this code is to help our visitors to understand how, to use simple programming tools of C++ in drawing shapes.
The codes we post are meant to:
  • Help our visitors to draw shapes.
  • Make them aware how to make easy shapes using loops.
  • Helping them out for their different assignments.

Benefits from this code of shapes in c:

There are many benefits of this code for our visitors.After studying this code you will be able to carry out the following benefits:
  • Easily understand the use of nested loops.
  • Appropriate use of If Else conditions.
  • Make a generic codes to make triangles of any desired size(// within the size limit of the console).
  • A clear cut help in designing similar problems.

For more visit: triangle programs in c.

Code:

Copy the code from here.
/*    Join us at
 http://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";
 cout<<"CAUTION:   The input should not be other than numerical values \n\n\a"; 
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=0; i>=j; j++)
cout<<"*";
cout<<endl;
}
}

Note:

Shapes in c is basically a forum for the programmers , who visit it and find the proper solution for their problems.The codes we post here are meant to help out our visitors to understand a problem and not for using in final submissions of assignments.We will not take any responsibility for any sort of plagiarism case if you copy pasted our code in your final assignments.




Output:








Right_Angle_Triangle_Shapes_In_C


0 comments:

Post a Comment