BellaElvyra
Aug 7, 2015, 08:29 AM
What is the output of the code below?
for (int I =1; I<5; I++)
{
for (int j=1; j<=i; j++)
{
System.out.print("* ");
}
System.out.println();
}
for (int I =1; I<5; I++)
{
for (int j=1; j<=i; j++)
{
System.out.print("* ");
}
System.out.println();
}