Computer Applications
Write a program in Java to display the following pattern:
123454321
1234321
12321
121
1
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 = 1; j <= i; j++)
System.out.print(j);
for (int k = i - 1; k >= 1; k--)
System.out.print(k);
System.out.println();
}
}
}
Output

Answered By
2 Likes
Related Questions
Write a program in Java to find the sum of the given series:
S = 1! + 2! + 3! + …. + n!
Write a program in Java to display the following pattern:
a
ce
gik
moqsState whether the following statement is True or False :
When break statement is applied, it terminates the loop.
Write a program in Java to input the values of x and n and print the sum of the following series:
S = 1 - x2/2! + x4/4! - x6/6! + ……. xn/n!