Tuesday 13 August 2013

Lower Triangle

Lower Triangle:

In this post of shapes in c language, you will find the code to draw lower 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 in c programming language.
The codes we post are meant to:
  • Help our visitors to draw shapes.
  • Helping them out for their different assignments. 
  • Make them aware how to make easy shapes using loops.

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: draw triangle 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 length=0;
cout << "Enter the size of the lower triangle\n";
cin>>length;
for(int i=0, k=length; i<length; i++, k--)
{
for(int j=0; j<length+k; j++)
{
if(i<j)
cout << "*";
else
cout << " ";
}
cout<<endl;
  }
return 0;
}


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:




0 comments:

Post a Comment