ICSE Class 10 Computer Applications Question 11 of 22

Nested for loops — Question 11

Back to all questions
11
Question

Question 2(x)

Write a program in Java to display the following patterns.

1 2 3 4 5
2 3 4 5
3 4 5
4 5 
5 
4 5 
3 4 5 
2 3 4 5
1 2 3 4 5
public class KboatPattern
{
    public static void main(String args[]) {
        
        for (int i = 1; i <= 5; i++)
        {
            for (int j = i; j <= 5; j++) {
                System.out.print(j);
            }
            System.out.println();
        }
        
        for (int k = 1; k <= 4; k++) {
            for (int l = 5 - k; l <= 5; l++) {
                System.out.print(l);
            }
            System.out.println();
        }
        
    }
}
Output
BlueJ output of KboatPattern.java
Answer