Witshaper is the Professional (Computing Skills, English Learning and Soft Skills) Skill Development Training Center. We provide Professional IT Courses and Soft Skill Training in Dehradun to Students, Employees and organization. Who wish to pursue a career in IT Technology. Witshaper is led by a motivated team of IT experts and Soft Skill Professionals. We provide high quality trainings. Our Emphasis is on giving the practical knowledge to the students, so that they will get to know in depth and never forget what they opt, we provide to the students real learning environment. Witshaper prepares students and professionals to be the part of this growing industry. Be a part of Witshaper and get your dreams successful

java implementation :pattern 4

Ques4.)  12345654321
 12345  54321
 1234      4321
             123           321
             12                21
             1                    1


Ans.)
package numberpattern;


public class pattern4 {
     public static void main(String args[])
    {
        for(int i=6;i>=1;i--)
        {
            for(int j=1;j<=i;j++)
            {
                System.out.print(j);
            }
              for(int k=4;k>=i;k--)
            {
                System.out.print(" ");
            }
               for(int k=5;k>=i;k--)
            {
                System.out.print(" ");
            }
                for(int g=i;g>=1;g--)
            {
                if(g==6)
                {
                    g=5;
                }
                System.out.print(g);
            }
            System.out.println("");
        }
   
    }

}

No comments:

Post a Comment