Preview:
*
***
*****
*******
*********      for(int line=1; line<=5; line++)
        {
            for(int j=1; j<=(2* line -1); j++)
            {
                System.out.print("*");
            }
            System.out.println();
        }
*********
*******
*****
***
*        for(int line=5; line>=1; line--)
        {
            for(int j=1; j<=(2* line -1); j++)
            {
                System.out.print("*");
            }
            System.out.println();
        }
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter