Computer Applications
Write a program in Java to display the following pattern:
5
454
34543
2345432
123454321
Java
Java Nested for Loops
6 Likes
Answer
public class KboatPattern
{
public static void main(String args[]) {
for (int i = 5; i >= 1; i--) {
for (int j = i; j <= 5; j++)
System.out.print(j);
for (int k = 4; k >= i; k--)
System.out.print(k);
System.out.println();
}
}
}
Output
Answered By
2 Likes