#Include #Include Void Main (CLRSCR For (Int I 1 I 3 I++) (For (Int J 1 J I J++) (Cout " " ) Cout Endl Endl ) Getch )

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 5

*

**

***

#include<iostream.h>

#include<conio.h>

void main()

   clrscr();

   for(int i=1; i<=3; i++)

   {

      for(int j=1; j<=i; j++)

      {

cout<<"*";

      }

cout<<endl<<endl;

 }

   getch();

}
***

**

*
#include<iostream.h>

#include<conio.h>

void main()

   clrscr();

   for(int i=3; i>=1; i--)

   {

      for(int j=1; j<=i; j++)

      {

cout<<"*" ;

      }

cout<<endl<<endl;

   }

   getch();

}
*

**

***
#include<iostream.h>

#include<conio.h>

void main()

   clrscr();

   for(int i=1; i<=3; i++)

   {

      for(int k=3; k>i;  k--)

      {

      cout<<" ";

      }

      for(int j=1; j<=i; j++)

      {

cout<<"*";

      }

cout<<endl<<endl;

   }

   getch();

}
***

**

#include<iostream.h>

#include<conio.h>

void main()

   clrscr();

   for(int i=3; i>=1; i--)

   {

      for(int k=3; k>i;  k--)

      {

         cout<<" "; 

       }

      for(int j=1; j<=i; j++)

      {

cout<<"*";

      }

cout<<endl;

   }

   getch();

}
*

**

***

**

You might also like