हिंदी

Write a program in Java to display the following pattern: a a a a a b b b b b A A A A A B B B B B - Computer Applications

Advertisements
Advertisements

प्रश्न

Write a program in Java to display the following pattern:

a a a a a 
b b b b b 
A A A A A 
B B B B B 

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

उत्तर

char a = 97; 
char b = 98;
System.out.println("\n\n"); 
for (int i = 1; i <= 4; i++)
{ for (int j = 1; j <= 5; j++)
{
if (i % 2 == 1)
System.out.print(a);
else
System.out.print(b);
}

if (i >= 2)
{ a = Character.toUpperCase(a);
b = Character.toUpperCase(b);
}
System.out.println();
}
}} 
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 2: Library Classes - EXERCISES [पृष्ठ १८०]

APPEARS IN

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

Englishहिंदीमराठी


      Forgot password?
Use app×