हिंदी

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

Advertisements
Advertisements

प्रश्न

Write the program to display the following pattern:

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

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

उत्तर

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

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
अध्याय 1.1 Nested Loop
EXERCISES | Q VI. 9. (g) | पृष्ठ १४७
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×