Tuesday, 22 November 2016

Write a program to print the following output using loop.





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

        {
           int i , j , k;

            for (i =1; i <=5; i++)
             {
                  for (k =1; k <=5-i; k++)
                   cout<<" . ";

                  for (j =1; j <= 2*i-1; j++)
                    cout<<"B";

                  cout<<"\n";
              }
              return 0;
        }





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...