πŸŽ‰ Festival Deal: Save Big on Professional Courses with Real Projects – Apply Coupons FEST300OFF FEST500OFF
β†’ Click Here ←

Solid Square Star Pattern Program in Java  


Program:
* * * * *
* * * * *
* * * * *
* * * * *
* * * * *
  • Program:
    public class StarPattern14
    {
        public static void main(String[] args)
        {
            for(int i=1; i<=5; i++)
            {
                for(int j=1; j<=5; j++)
                {
                    System.out.print("*");
                }
                System.out.println();
            }
        }
    }