I think I'm going to laugh at this once I figure it out... Anyways, I get a few issues when I try to compile this program.
CODE
public class Assignment1
{
public static void main(String [] args);
int step = 6;
for (i=1; i < step; i++)
{
if (i == 0 || i == 1)
{
System.out.println("\t\t[][][]\n");
}
else if (i == 2 || i == 3)
{
System.out.println("\t[][][][]\n");
}
else
{
System.out.println("[][][][]\n");
}
}
}
It has a problem here
CODE
for (i=1; i < step; i++)
Complains about an illegal start of type. This may not only be the only issue. Basically I'm trying to get the following output.

Its supposed to be a climbing staircase.
I appreciate any help here... I think I basically need to declare "i" right? But I have an issue doing that... I have done my end and I have been researching on how to get this running but I'm stuck and I've been working on this for over three hours...