English

Write the program to display the following pattern: ** # * # ** # * #* # * # * - Computer Applications

Advertisements
Advertisements

Question

Write the program to display the following pattern:

*
*     #     
*     #     *
*     #     *     #
*     #     *     #     *

Answer in Brief

Solution

public class Q9g
{ public static void main(String ar[])
{System.out.println("\n---------------------");
int i; j;
for (i = 1; i <= 5; i++)
{ System.out.println();
for (j = 1; j <= i; j++)
{ if (j % 2 != 0)
System.out.print("* ");
else
System.out.print("# ");
}}}
shaalaa.com
  Is there an error in this question or solution?
Chapter 1.1: Nested Loop - EXERCISES [Page 147]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 1.1 Nested Loop
EXERCISES | Q VI. 9. (g) | Page 147
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×