🪔 Navratri Special • 🌙 Eid Blessings
Celebrate the season with Upto 70% OFF + Extra 26% OFF
Use Code: NAVRATRI26
Explore Courses →

Number Pattern Programs in Java  


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