I need t o make these paterns
* * ********** **********
** ** ********* *********
*** *** ******** ********
**** **** ******* *******
***** ***** ****** ******
****** ****** ***** *****
******* ******* **** ****
******** ******** *** ***
********* ********* ** **
********** ********** * *
I can make only the first one, this is what I have, please help make the other ones in the same program
for (int r=1; r<=10; r++)
{
for (int c=1; c<=r; c++)
cout<<"*";
cout<<endl;
}