37. Program to display the following output using loop.

Chapter 6: 

Looping Structures

Programming Exercise

Problem # 37:

Write a program to display the following output using loop:
                            1
                      1    2
                1    2    3
          1    2    3    4
    1    2    3    4    5

Solution:

#include<iostream>
#include<conio.h>
using namespace std;
int main()
{
    for(int i=1;i<=5;i++)
    {
        for(int j=5;j>i;j--)
        {
            cout<<" \t";  
        }
        for(int k=1;k<=i;k++)
        {
            cout<<k<<"\t";  
        }      
        cout<<"\n";      
    }
    getch();
}

Output:


Let me know in the comment section if you have any question.

Previous Post:
36. Program to display the following output using nested for loop.

Comments