Monday, 21 November 2016

Write a program to print the following output using loop.





         #include <iostream.h>
        #include <conio.h>
        int main ()

        {
                    int row, pound, star; 
                      int nrows = 6; 
                      for(row = 1; row <= nrows; row++)
                      {
                           for(pound = 1; pound <= nrow-row; pound++)
                                 cout<<"#"; 
                           for(star =1; star <= 2*row-1; star++){
                               if(star == 1 || star == 2*row-1)
                                    cout<<"*"; 
                               else 
                                     cout<<"#"; 
                          for(pound = 1; pound <=  nrow-row; pound++)
                                cout<<"#"; 
                           cout<<endl;
                      }
                }
                  getch();

        }

No comments:

Post a Comment

If you have any doubt please let me know

Methods in JAVA Language

 In general, a way may be thanks to perform some task. Similarly, the tactic in Java may be a collection of instructions that performs a sel...