360 likes | 478 Views
Consider a line of asterisks:. *********************...How can I do this in a program?. . . row. column. Consider a line of asterisks: *************. final int numberCols = 20;for (int col=1; col<=numberCols; col ) {System.out.print( "*" );}System.out.println();. . . Say I want rows and
E N D