हिंदी

Write a program in Java to display the following pattern: ZYXWUZYXWZYXZYZ - Computer Applications

Advertisements
Advertisements

प्रश्न

Write a program in Java to display the following pattern:

ZYXWU
ZYXW
ZYX
ZY
Z

संक्षेप में उत्तर

उत्तर

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
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 2: Library Classes - EXERCISES [पृष्ठ १८०]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
अध्याय 2 Library Classes
EXERCISES | Q VIII. 12. (b) | पृष्ठ १८०
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×