KnowledgeBoat Logo
|

Computer Applications

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

Java

Java Nested for Loops

2 Likes

Answer

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 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

Answered By

1 Like


Related Questions