KnowledgeBoat Logo

Java Pattern Programs

Write a program in Java to display the following pattern:

1 2 3 4 5
2 2 3 4 5
3 2 3 4 5
4 2 3 4 5
5 2 3 4 5

Java

Java Nested for Loops

ICSE

5 Likes

Answer

public class KboatPattern
{
    public static void main(String args[]) {
        for (int i = 1; i <= 5; i++) {
            System.out.print(i + " ");
            for (int j = 2; j <= 5; j++)
                System.out.print(j + " ");
            System.out.println();
        }
    }
}

Output

BlueJ output of Write a program in Java to display the following pattern: 1 2 3 4 5 2 2 3 4 5 3 2 3 4 5 4 2 3 4 5 5 2 3 4 5

Answered By

3 Likes