How would I make a java program using for loops to print the following pattern...
*
***
*****
*******
*********
*******
*****
***
*
i started it but dont know what to do...
public class Stars
{
public static void main (String []args)
{
final int MAX_ROWS=10;
for (int row=1; row<=MAX_ROWS; row++)
{
.....
*
***
*****
*******
*********
*******
*****
***
*
i started it but dont know what to do...
public class Stars
{
public static void main (String []args)
{
final int MAX_ROWS=10;
for (int row=1; row<=MAX_ROWS; row++)
{
.....
Comment