#include<iostream.h>
#include<conio.h>

main()
{
    cout << "*    *   ***\n*    *    *\n******    *\n*    *    *\n*    *   ***" << endl;

    getch();
}




#include<iostream.h>

#include<conio.h>

main()
{
    cout << "   *" << endl;
    cout << "  * *" << endl;
    cout << " * * *" << endl;
    cout << "* * * *" << endl;
    cout << " * * *" << endl;
    cout << "  * *" << endl;
    cout << "   *" << endl;
    getch();
}