Home Answers Viewqa Java-Beginners Fresher-Trainee

 
 


nisha
Fresher-Trainee
1 Answer(s)      2 years and 2 months ago
Posted in : Java Beginners

the below pgm has an exception during run time, and has no errors during compilation , pls help. wat to do?

class Pyramid

{

public static void main(String[] args)

{

int x = 9;

for (int i = 1; i <= x; i++)

{  

 for (int j = 1; j <= x - i; j++)

 System.out.print("   "); 


  for (int k = i; k >= 1; k--)   

  System.out.print((k >=10) ?+ k : "  " + k);  

   for (int k = 2; k <=i; k++)     

   System.out.print((k>= 10) ?+ k : "  " + k); 

  System.out.println();  

}

}

}

View Answers

March 24, 2011 at 5:20 PM


i have run this code successfully...

public class Pyramid {
    public static void main(String[] args)

    {

        int x = 9;

        for (int i = 1; i <= x; i++)

        {

            for (int j = 1; j <= x - i; j++)

                System.out.print("   ");

            for (int k = i; k >= 1; k--)

                System.out.print((k >= 10) ? +k : "  " + k);

            for (int k = 2; k <= i; k++)

                System.out.print((k >= 10) ? +k : "  " + k);

            System.out.println();

        }

    }

}

i m coping its output as it is :

             1
                       2  1  2
                    3  2  1  2  3
                 4  3  2  1  2  3  4
              5  4  3  2  1  2  3  4  5
           6  5  4  3  2  1  2  3  4  5  6
        7  6  5  4  3  2  1  2  3  4  5  6  7
     8  7  6  5  4  3  2  1  2  3  4  5  6  7  8
  9  8  7  6  5  4  3  2  1  2  3  4  5  6  7  8  9









Related Pages:
Fresher-Trainee
Fresher-Trainee  the below pgm has an exception during run time, and has no errors during compilation , pls help. wat to do? class Pyramid { public static void main(String[] args) { int x = 9; for (int i
Fresher-Trainee
Fresher-Trainee  a java program to calculate the area of different shapes using Multilevel Inheritance
DATA Warehousing
DATA Warehousing       Position Vacant: DATA Warehousing (FRESHER/TRAINEE) Job Description...: DATA Warehousing (FRESHER/TRAINEE

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.