Computer Applications
Write a program in Java to display the following pattern:
1
31
531
7531
Java
Java Nested for Loops
17 Likes
Answer
public class KboatPattern
{
public static void main(String args[]) {
for (int i = 1; i <= 7; i += 2) {
for (int j = 6; j >= i; j -= 2)
System.out.print(" ");
for (int k = i; k >= 1; k -= 2)
System.out.print(k);
System.out.println();
}
}
}
Output

Answered By
8 Likes
Related Questions
What is significance of 'break outer' and 'continue outer' in a nested loop?
Write a program in Java to display the following pattern:
a
ce
gik
moqsWrite a program in Java to display the following pattern:
5 5 5 5 5
4 4 4 4
3 3 3
2 2
1Write a program in Java to display the following pattern:
1
3 1
5 3 1
7 5 3 1
9 7 5 3 1