Computer Applications
Write a program in Java to display the following patterns.
1 2 3 4 5
2 3 4 5
3 4 5
4 5
5
4 5
3 4 5
2 3 4 5
1 2 3 4 5
Java
Java Nested for Loops
2 Likes
Answer
public class KboatPattern
{
public static void main(String args[]) {
for (int i = 1; i <= 5; i++)
{
for (int j = i; j <= 5; j++) {
System.out.print(j);
}
System.out.println();
}
for (int k = 1; k <= 4; k++) {
for (int l = 5 - k; l <= 5; l++) {
System.out.print(l);
}
System.out.println();
}
}
}Output

Answered By
1 Like
Related Questions
Write a program in Java to display the following patterns.
I I C I C S I C S EWrite a program in Java to display the following patterns.
1 2 3 4 5 1 2 3 4 1 2 3 1 2 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5Distinguish between the following:
break statement and labelled break statement
Distinguish between the following:
continue statement and labelled continue statement