this is my problem
for(int i=1;i<15 ;i++) // start and write *
{//repeat
System.out.println("*");
for(int j=0 ;j<i<6;j++) // write " / " from 1 to 6
{ System.out.print("/"); }
for(int h=7;h<i;h++) // write " + " from 7 to end =15
{System.out.print("+"); }
--- Update ---
I want it this this shape but in one code not two
for(int i=1;i<6 ;i++)
{//repeat
System.out.println("*");
for(int j=0 ;j<i;j++) {
System.out.print("/");}}
for(int k=6;k<15 ;k++)
{ System.out.println("*");
for(int h=0;h<k;h++) {
System.out.print("+");}}