Monday 21, May 2012
Welcome Guest, Register | Login  
      Home    |    Tutorials    |    Free Ebooks    |    Free Scripts    |    Articles    |    Blog     |    About Us    |    Contact Us

  Program to display pyramid of numbers using c++

Here is a c++ program example to show a pyramid of numbers.
Cut & Paste Script
#include<iostream.h>
#include<iomanip.h>
void main()
{
    int i,j,k,n,j2;
    cout<<" Enter the height of pyramid :    ?\b  ";
    cin>>n;
    for(i=1;i<=n;i++)
    {
        for(k=1;k<=(n-i);k++)
            cout<<setw(3)<<" ";
        for(j=1;j<=i;j++)
            cout<<setw(3)<<i+j-1;
        for(j2=1;j2<=(i-1);j2++)
            cout<<setw(3)<<2*i-j2-1;
        cout<<endl;
    }
}

Output:
Enter the height of pyramid :      7
                    1
                 2  3  2
              3  4  5  4  3
           4  5  6  7  6  5  4
        5  6  7  8  9  8  7  6  5
     6  7  8  9 10 11 10  9  8  7  6
  7  8  9 10 11 12 13 12 11 10  9  8  7
Press any key to continue
 
   
     RELATED SCRIPTS
 
swaping two numbers entered by user using c++
A program for swaping two numbers entered by user using c++. ...more »
Category : C++ Programs Hits : 504
   
Calculate number of digits in a number using c++
Here is a c++ program example to calculate number of digits in a number entered by user....more »
Category : C++ Programs Hits : 587
   
Structures in c++ example code
An example code for structures in c language....more »
Category : C++ Programs Hits : 762
   
program to print a rectangle of "*"
The following program forms a rectangle of "*"
(Length and width of rectangle entered by user)...more »
Category : C++ Programs Hits : 992
   
Creating an abstract class using C++
Here is the source code for an abstract class in C++....more »
Category : C++ Programs Hits : 479
   
   
SCRIPT CATEGORIES
 
  C Programs
C Programs scripts
  C++ Programs
C++ Programs scripts
  Java Programs
Java Programs scripts
  JavaScript Examples
JavaScript Examples scripts
  PHP Examples
PHP Examples scripts
  VBScript Examples
VBScript Examples scripts
 
 
 
POPULAR E-BOOKS
 
Download The Amamzing Links Wizard Ebook The Amamzing Links Wizard
   
Download Make Money Online Ebook Make Money Online
   
Download Advanced Programming for the Java 2 Platform  Ebook Advanced Programming for the Java 2 Platform
   
Download Art Gallery Theorems and Algorithms  Ebook Art Gallery Theorems and Algorithms
   
Download The 7 Great Lies of Network Marketing  Ebook The 7 Great Lies of Network Marketing
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz