Computer Applications
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
8 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
Answered By
4 Likes