Wednesday, 25 May 2016

Write a program that print  the following  output using loop: 

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

Solution:

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

No comments:

Post a Comment