i am trying to make this shape using java
**********************
**********************
*****************
***************
************
***************
******************
i have TRIED at the bottom as u can see but i am unable to get this shape
i am confused
public class courseforuni
{
public static void main (String [] args)
{
int a=5;
for(int i=0; i<=a; i++)
{
for(int j=0; j<=a; j++)
{
if((i+j)<=a)
{
System.out.println ("*");
}
else
{
System.out.print("");
}
}
System.out.print ("");