Advertisements
Advertisements
Question
Write a program in Java to display the following pattern:
ZYXWU
ZYXW
ZYX
ZY
Z
Answer in Brief
Solution
public class Q12b{
public static void main(String args[])
{
s = "ZYXWU";
System.out.println("\n\n ");
for (int i = s.length() - 1; i >= 0; i--)
{for (int j = 0; j <= i; j++)
System.out.print(s.charAt() + " ");
System.out.println();
}
shaalaa.com
Is there an error in this question or solution?
Chapter 2: Library Classes - EXERCISES [Page 180]