Quote (carteblanche @ Sep 17 2014 05:56pm)
couple suggestions.
1) stop worrying about the outer loop and just focus on the two inner loops to create 1 line of output.
replace your outer loop with just this:
int i = 7;
2) if you're having a problem with a specific loop, then write the code WITHOUT loops.
ex: instead of something like this:
for (int j = 0; j < 4; j++){
print(j);
}
you would write this:
print(0);
print(1);
print(2);
print(3);
then once you get the exact output you want, look at the numbers you had to use and figure out the loop that makes it
What do you mean by the outer loop, like the very outer loop(for(int I = 1)?