For Loops

wxdqz

New Member
I need some help developing a three nested For loop, using this structure:
for (i = 0; i<= 5; i++) {
for (j = 0; j <= 5; j++) {
for (k = 0; <= 5; k++) {
}
}
}

this needs to have tables and rows as well.

with in the innermost For loop, write table cells that have background color = to color value, #colorcolor[j]color[k]

with in the middle loop write tags to start and end table row.

with in the outer loop, write tags to create and close the table.

I have been trying to figure this out for days..can anyone show me some insite?
 
Back
Top