Computer Science, asked by satvik6050, 11 months ago

how to print blue J patterns

Answers

Answered by abhay6884
0
public class Pattern { public static void main(String[] args) { int rows = 5; for(int i = 1; i <= rows; ++i) { for(int j = 1; j <= i; ++j) { System.out.print(j + " "); } System.out.println(); } } }
Similar questions