1.

Display the following pattern using Iteration(looping) statement 1, 1 2, 1 2 3, 1 2 3 4, 1 2 3 4 5​

Answer» CLASS Triangle { public static VOID main(STRING[ ] args) { for (int i = 1; i <= 5; i++) { for (int J = 1; j <= i; j++) System.out.print(j + " "); System.out.println( ); } }}


Discussion

No Comment Found