KnowledgeBoat Logo

Java Pattern Programs

Write a program in Java to display the following pattern:

225 196 169 144 121
100 81  64  49
36  25  16
9   4
1

Java

Java Nested for Loops

ICSE

4 Likes

Answer

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

Output

BlueJ output of Write a program in Java to display the following pattern: 225 196 169 144 121 100 81 64 49 36 25 16 9 4 1

Answered By

1 Like