Tuesday 13 August 2013

Upper Triangle

Upper Triangle:

In this post of shapes in c language, you will find the code to draw upper 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++ to create shapes in c programming language.
The codes we post are meant to:
  • Help our visitors in drawing complex shapes.
  • Make them aware how to draw 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).

For more visit: draw triangle in c.


Code:


Your desired code is as follows.
/* 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 length of the upper triangle\n";
cin>>length;
for(int i=length, k=0; i>=0; i--, k++)
{
for(int j=0; j<length+k; j++)
{
if(j>i)
          cout << "*";
else
          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 in understanding different problems 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:




Upper-Triangle-Shapes-In-C

0 comments:

Post a Comment