English

Write Two Separate Programs to Generate the Following Patterns Using Iteration (Loop) Statement: - Computer Applications

Advertisements
Advertisements

Question

Write two separate programs to generate the following patterns using iteration (loop) statement:

(a)

Short Note

Solution

public class pattern1
{
public static void main( )
{
   for (int i=1; i<=5; i++)
   {
      for(int j=1; j<=i; j++)
      {
         if(j %2==1)
        System.out.print("*");
        else
        System.out.print("#");
     } 
    System.out.println( );
  }
}
}  

shaalaa.com
Introduction of Iterative Constructs in Java
  Is there an error in this question or solution?
2014-2015 (March) Set 1
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×