KnowledgeBoat Logo

Computer Applications

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

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

Java

Java Nested for Loops

ICSE

62 Likes

Answer

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

Output

BlueJ output of Write two separate Java programs to generate the following patterns using iteration (loop) statements: * * # * # * * # * # * # * # *

Answered By

28 Likes


Related Questions