KnowledgeBoat Logo
|

Computer Applications

Write a program to generate the following output.

@
@ #
@ # @
@ # @ #
@ # @ # @

Java

Java Nested for Loops

19 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 a program to generate the following output. @ @ # @ # @ @ # @ # @ # @ # @

Answered By

10 Likes


Related Questions