1 2 3 4 5 6 7 8 9 10 11 12 |
class FloydTriangle{ public static void main(String args[]){ int a=0; for(int i=0; i<5; i++){ for(int j=0; j<=i; j++) System.out.print(++a); System.out.println(); } } } |
Output
1 2 3 4 5 |
1 23 456 78910 1112131415 |