Write a program in Java to display the following pattern:
1 2 3 4 52 2 3 4 53 2 3 4 54 2 3 4 55 2 3 4 5
7 Likes
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(); } } }
Answered By
4 Likes