Write a program in Java to display the following pattern:
A*B*C*D*E*A*B*C*D*A*B*C*A*B*A*
49 Likes
public class KboatPattern { public static void main(String args[]) { for(int i = 69; i >= 65; i--) { for (int j = 65; j <= i; j++) { System.out.print((char)j + "*"); } System.out.println(); } } }
Answered By
21 Likes
PRTVPRTPRP
ABCDEABCA
a a a a ab b b b bA A A A AB B B B B
ZYXWUZYXWZYXZYZ