Monday, 21 November 2016

Write a program that displays the following output using loop


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

        {
           int  i,j;
           char ch 'A';

           for ( i = 1; i <5; i++)
           {
              for (j =1; j<=i; j++)
              {
                  if (j =1)
                       ch = 'A';
                 cout<< ch++;
              }
              cout<< endl ;
           }
           return 0;
        } 

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