ICSE Class 10 Computer Applications
Question 1 of 22
Nested for loops — Question 1
Back to all questions 1
Question Question 1
Write a program to generate the following output.
@
@ #
@ # @
@ # @ #
@ # @ # @
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
