Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java

Nested for loops - Java

In java, how would you write a nested for loop to print the following: o //\ ||
o // \ || o // \ || o // \ || o // \||

I know how to write a basic for loop but the transformation part is what I have trouble with. Any help on this would be greatly appreciated! Thanks, I also realize the pattern isn't showing up correctly on the question. Basically the patter is in the shape of a "W" but made up of the characters above.

so you want to print to the screen a huge w but with different lines and stuff? cant you just use System.out.println(); inside of your loops and make it so it prints the top row of characters then the second then third etc.