ICSE Class 9 Computer Applications Question 1 of 17

Nested for loops — Question 1

Back to all questions
1
Question

Question 1

Write a program to generate the following output.

*
* #
* # *
* # * #
* # * # *
Answer
public class KboatPattern
{
    public static void main() {
        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 KboatPattern.java