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 2


Ques2.   123456787654321
                 1234567654321
                   12345654321
                     123454321
                       1234321
                         12321
                           121
                             1

package numberpattern;

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

}

No comments:

Post a Comment