Java Pattern Programs
Write a program in Java to display the following pattern:
1 2 3 4 5
2 2 3 4 5
3 2 3 4 5
4 2 3 4 5
5 2 3 4 5
Java
Java Nested for Loops
7 Likes
Answer
public class KboatPattern
{
public static void main(String args[]) {
for (int i = 1; i <= 5; i++) {
System.out.print(i + " ");
for (int j = 2; j <= 5; j++)
System.out.print(j + " ");
System.out.println();
}
}
}
Output
Answered By
4 Likes