Wednesday, 25 May 2016

Write a program to print the following output using loop: 

                                       1
                                 1        2
                                 1        2         3
                                 1        2         3        4
                                 1        2         3        4          5

Solution: 

                #include<iostream.h>
                #include<conio.h>
                void main()
                {
                      int i , j;
                      clrscr();
                      for(i =1; i<=5; i++)
                      {
                            for(j= 1; j<=i; j++)
                                cout<<setw(5)<<j;
                            cout<<endl;
                      }
                      getch();
                }

No comments:

Post a Comment